forked from 9-coding/CLO-C_app
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathapp.json
More file actions
39 lines (39 loc) · 831 Bytes
/
app.json
File metadata and controls
39 lines (39 loc) · 831 Bytes
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
{
"expo": {
"android": {
"googleServicesFile": "./google-services.json",
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#ffffff"
},
"package": "com.xxx.xxx"
},
"assetBundlePatterns": [
"**/*"
],
"extra": {
"expo": {
"hot": true
}
},
"icon": "./assets/icon.png",
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.xxx.xxx"
},
"name": "CloC",
"orientation": "portrait",
"slug": "CloC",
"scheme": "myapp",
"splash": {
"image": "./assets/logo.png",
"resizeMode": "contain",
"backgroundColor": "#000000"
},
"userInterfaceStyle": "light",
"version": "1.0.0",
"web": {
"favicon": "./assets/favicon.png"
}
}
}