-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.json
42 lines (42 loc) · 1.21 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
{
"expo": {
"name": "Everyday Luck",
"description": "An app to help you learn Chinese with short lessons everyday",
"slug": "everyday-luck",
"privacy": "public",
"platforms": ["ios", "android"],
"version": "1.2.06",
"orientation": "portrait",
"icon": "./src/assets/icon.png",
"splash": {
"image": "./src/assets/splash.png",
"resizeMode": "contain",
"backgroundColor": "#e7dddd"
},
"updates": {
"enabled": true,
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": ["src/assets/**/*.png"],
"android": {
"versionCode": 8,
"permissions": [],
"package": "com.everyday.luck",
"splash": {
"resizeMode": "contain",
"backgroundColor": "#e7dddd",
"mdpi": "./src/assets/android/splash-mdpi.png",
"hdpi": "./src/assets/android/splash-hdpi.png",
"xhdpi": "./src/assets/android/splash-xhdpi.png",
"xxhdpi": "./src/assets/android/splash-xxhdpi.png",
"xxxhdpi": "./src/assets/android/splash-xxxhdpi.png"
}
},
"ios": {
"buildNumber": "7",
"supportsTablet": false,
"icon": "./src/assets/ios_icon.png",
"bundleIdentifier": "everyday.luck.app"
}
}
}