-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathapp.json
32 lines (32 loc) · 813 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
{
"expo": {
"name": "Uzual",
"slug": "Uzual",
"description": "Mood & Habits tracker.",
"privacy": "public",
"sdkVersion": "33.0.0",
"platforms": ["ios", "android"],
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/images/icon.png",
"primaryColor": "#40E0D0",
"splash": {
"image": "./assets/images/splash.png",
"resizeMode": "contain",
"backgroundColor": "#40E0D0"
},
"updates": {
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": ["**/*"],
"android": {
"permissions": ["CAMERA_ROLL", "CAMERA", "NOTIFICATIONS"],
"package": "com.BatmanCodes.Android.Uzual",
"versionCode": 1
},
"ios": {
"bundleIdentifier": "com.BatmanCodes.Uzual",
"supportsTablet": true
}
}
}