-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathapp.json
43 lines (43 loc) · 1.05 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": {
"name": "Rule of Three",
"slug": "rule-of-three",
"description": "Calculate rule of 3 math problems effortlessly!",
"version": "1.0.1",
"orientation": "default",
"icon": "./assets/icon.png",
"splash": {
"image": "./assets/splash.png",
"resizeMode": "contain",
"backgroundColor": "#7746E8"
},
"updates": {
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": ["**/*"],
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.ericquanz.ruleofthree"
},
"android": {
"package": "com.ericquanz.ruleofthree",
"versionCode": 6,
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#7746E8"
},
"blockedPermissions": ["com.google.android.gms.permission.AD_ID"]
},
"web": {
"favicon": "./assets/favicon.png"
},
"extra": {
"eas": {
"projectId": "2c5cce10-3f60-11e8-b01a-f7c8098ac9bd"
}
},
"experiments": {
"baseUrl": "/rule-of-three"
}
}
}