-
-
Notifications
You must be signed in to change notification settings - Fork 54
/
app.json
43 lines (43 loc) · 988 Bytes
/
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": {
"name": "socialapp-rn",
"slug": "socialapp-rn",
"platforms": [
"ios",
"android"
],
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/buildericon.png",
"splash": {
"image": "./assets/splash3.png",
"resizeMode": "cover",
"backgroundColor": "#fff"
},
"updates": {
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": [
"**/*"
],
"ios": {
"bundleIdentifier": "io.github.shahshubh.socialapp-rn",
"buildNumber": "1.0.0",
"supportsTablet": true
},
"android": {
"package": "io.github.shahshubh.socialapp_rn",
"versionCode": 1,
"adaptiveIcon": {
"foregroundImage": "./assets/buildericon.png",
"backgroundColor": "#fff"
},
"googleServicesFile": "./google-services.json",
"permissions": [
"CAMERA",
"WRITE_EXTERNAL_STORAGE",
"READ_EXTERNAL_STORAGE"
]
}
}
}