-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.json
executable file
·47 lines (47 loc) · 1.23 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
45
46
47
{
"expo": {
"name": "QNS",
"slug": "qnsapp",
"description": "Quran and Hadith book App",
"privacy": "public",
"platforms": [
"ios",
"android",
"web"
],
"version": "1.0.0",
"orientation": "portrait",
"icon": "./app/assets/icon.png",
"splash": {
"image": "./app/assets/splash.png",
"resizeMode": "cover",
"backgroundColor": "#7f70e7"
},
"updates": {
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": [
"app/assets/*"
],
"android": {
"package": "org.qnsapp",
"useNextNotificationsApi": true
},
"ios": {
"supportsTablet": true,
"bundleIdentifier": "org.qnsapp",
"infoPlist": {
"UIBackgroundModes": [
"audio"
]
}
},
"notification": {
"color": "#FFFFFF",
"iosDisplayInForeground": true,
"androidMode": "default"
},
"githubUrl": "https://github.com/mahmed0715/qnsapp",
"entryPoint": "node_modules/expo/AppEntry.js"
}
}