diff options
author | Ansh <anshnanda10@gmail.com> | 2023-11-26 13:46:31 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-26 13:46:31 -0800 |
commit | 0079030244092aaef4a40c37e457ef693f19e593 (patch) | |
tree | 6ce8621eb380e114a2bffd9d5cdff40482497f5f /eas.json | |
parent | 08355e516632852540f44b089a0b31a3ffed802b (diff) | |
download | voidsky-0079030244092aaef4a40c37e457ef693f19e593.tar.zst |
create build v1.57 (#2000)
Diffstat (limited to 'eas.json')
-rw-r--r-- | eas.json | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/eas.json b/eas.json index 69e5c94d6..a66b6c075 100644 --- a/eas.json +++ b/eas.json @@ -4,37 +4,45 @@ "promptToConfigurePushNotifications": false }, "build": { + "base": { + "node": "18.18.2" + }, "development": { + "extends": "base", "developmentClient": true, "distribution": "internal", "ios": { "simulator": true, - "resourceClass": "m-large" + "resourceClass": "large" }, "channel": "development" }, "development-device": { + "extends": "base", "developmentClient": true, "distribution": "internal", "ios": { - "resourceClass": "m-large" + "resourceClass": "large" }, "channel": "development" }, "preview": { + "extends": "base", "distribution": "internal", "ios": { - "resourceClass": "m-large" + "resourceClass": "large" }, "channel": "preview" }, "production": { + "extends": "base", "ios": { - "resourceClass": "m-large" + "resourceClass": "large" }, "channel": "production" }, "dev-android-apk": { + "extends": "base", "developmentClient": true, "android": { "buildType": "apk", |