-
Notifications
You must be signed in to change notification settings - Fork 0
/
eas.json
39 lines (39 loc) · 1.02 KB
/
eas.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"cli": {
"version": ">= 3.0.0",
"appVersionSource": "remote"
},
"build": {
"preview": {
"distribution": "internal",
"env": {
"ANDROID_HOME": "C:/Users/user/AppData/Local/Android/Sdk", // Windows path format
"EXPO_DEBUG": "true"
},
"android": {
"buildType": "apk",
"jsEngine": "hermes",
"enableProguardInReleaseBuilds": true,
"gradleCommand": ":app:assembleRelease",
"artifactPath": "android/app/build/outputs/apk/release/app-release.apk"
}
},
"production": {
"distribution": "store",
"env": {
"ANDROID_HOME": "C:/Users/user/AppData/Local/Android/Sdk",
"EXPO_OPTIMIZE_ASSETS": "true"
},
"android": {
"buildType": "apk",
"jsEngine": "hermes",
"enableProguardInReleaseBuilds": true,
"gradleCommand": ":app:assembleRelease",
"artifactPath": "android/app/build/outputs/apk/release/app-release.apk"
}
}
},
"submit": {
"production": {}
}
}