-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathapp.json
44 lines (44 loc) · 1.27 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
44
{
"expo": {
"name": "Astrale",
"slug": "astrale",
"version": "1.0.0",
"description": "Discover what the future holds for you. Get an insight on what to expect for love, work, well-being and good fortune for today with Astrale app.",
"privacy": "public",
"platforms": ["ios", "android"],
"orientation": "portrait",
"icon": "./assets/images/icon.png",
"primaryColor": "#151515",
"splash": {
"image": "./assets/images/splash.png",
"resizeMode": "contain",
"backgroundColor": "#151515"
},
"assetBundlePatterns": ["**/*"],
"scheme": "astrale",
"ios": {
"bundleIdentifier": "x.astrale",
"buildNumber": "1.0.0",
"supportsTablet": false,
"icon": "./assets/images/icon.png",
"infoPlist": {
"NSCameraUsageDescription": "This application uses the camera to scan your hand and read your lifelines"
}
},
"android": {
"package": "x.astrale",
"versionCode": 4
},
"androidStatusBar": {
"hidden": false,
"translucent": true,
"barStyle": "light-content",
"backgroundColor": "#151515"
},
"notification": {
"icon": "./assets/images/icon-notification.png",
"color": "#151515",
"iosDisplayInForeground": true
}
}
}