From 14c84732106e1db52e6818ac3814c54845ec1226 Mon Sep 17 00:00:00 2001 From: Ansh Date: Sun, 9 Apr 2023 18:02:44 -0700 Subject: [DRAFT] Android (#424) * add android & ios folders to .gitignore * delete android and ios dirs * fix android build errors * fix status bar color * fix top cutoff on composer in android * fix weird whitespace issue in post * fix greyed out header android * fix main feed getting cut off android * fix swiping on main feed * fix profile tabs switching on android * A few app.json config items for iOS * Update app.json for bgfetch * make swiping work on android * make splash screen cover * add eas.json * fix image container on android * fix android status bar color * use expo-splash-screen instead of react-native-splash-screen --------- Co-authored-by: Paul Frazee --- eas.json | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 eas.json (limited to 'eas.json') diff --git a/eas.json b/eas.json new file mode 100644 index 000000000..8301da1c4 --- /dev/null +++ b/eas.json @@ -0,0 +1,28 @@ +{ + "cli": { + "version": ">= 3.8.1" + }, + "build": { + "development": { + "developmentClient": true, + "distribution": "internal", + "ios": { + "resourceClass": "m-medium" + } + }, + "preview": { + "distribution": "internal", + "ios": { + "resourceClass": "m-medium" + } + }, + "production": { + "ios": { + "resourceClass": "m-medium" + } + } + }, + "submit": { + "production": {} + } +} -- cgit 1.4.1