-
Notifications
You must be signed in to change notification settings - Fork 19
/
app.json
43 lines (43 loc) · 1.04 KB
/
app.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
40
41
42
43
{
"expo": {
"owner": "discipletools",
"name": "D.T",
"slug": "discipletoolsapp",
"privacy": "public",
"platforms": ["ios", "android"],
"version": "1.12.0",
"orientation": "portrait",
"userInterfaceStyle": "automatic",
"icon": "./assets/icon.png",
"notification": {
"icon": "./assets/icon-status-bar.png"
},
"splash": {
"image": "./assets/splash.png",
"resizeMode": "cover",
"backgroundColor": "#ffffff"
},
"updates": {
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": ["**/*"],
"ios": {
"bundleIdentifier": "tools.disciple.app",
"supportsTablet": true
},
"android": {
"package": "tools.disciple.app",
"googleServicesFile": "./google-services.json",
"softwareKeyboardLayoutMode": "pan",
"versionCode": 1120
},
"description": "",
"scheme": "tools.disciple.app",
"extra": {
"eas": {
"projectId": "f75352c0-f025-11e9-ad8e-75ff7ea50268"
}
},
"plugins": ["expo-localization"]
}
}