-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy patheas.json
37 lines (37 loc) · 1.13 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
{
"cli": {
"requireCommit": false,
"promptToConfigurePushNotifications": true,
"appVersionSource": "local"
},
"build": {
"preview-assembleDebug": {
"android": {
"gradleCommand": ":app:assembleDebug"
}
},
"development": {
"developmentClient": true,
"distribution": "internal",
"android": {
"buildType": "apk",
"withoutCredentials": true
},
"env": {
"PERSONAPLUS_ENV_PACKAGE": "com.zakahacecosas.personaplus.development",
"PERSONAPLUS_ENV_APP_ICON": "./assets/resources/icon-5050.png",
"PERSONAPLUS_ENV_APP_NAME": "PP Dev Build",
"PERSONAPLUS_ENV_APP_ADAPTIVE_ICON_BACKGROUND": "./assets/resources/aib-5050.png"
}
},
"production": {
"android": {
"buildType": "apk"
},
"distribution": "store",
"env": {
"PERSONAPLUS_ENV_PACKAGE": "com.zakahacecosas.personaplus"
}
}
}
}