-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathapp.json
More file actions
54 lines (54 loc) · 1.42 KB
/
app.json
File metadata and controls
54 lines (54 loc) · 1.42 KB
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
48
49
50
51
52
53
54
{
"expo": {
"name": "RN Book Search",
"description": "A Book Search book created using React Native",
"slug": "RNBookSearch",
"privacy": "public",
"platforms": ["ios", "android", "web"],
"version": "1.0.10",
"orientation": "portrait",
"icon": "./assets/icon.png",
"primaryColor": "#5e72e4",
"splash": {
"image": "./assets/splash/Splash.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"updates": {
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": ["**/*"],
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.VNapps.rnBookSearch"
},
"android": {
"package": "com.VNapps.rnBookSearch",
"permissions": [],
"versionCode": 11,
"splash": {
"backgroundColor": "#ffffff",
"resizeMode": "native",
"mdpi": "./assets/splash/Splash.png",
"hdpi": "./assets/splash/Splash@1.5x.png",
"xhdpi": "./assets/splash/Splash@2x.png",
"xxhdpi": "./assets/splash/Splash@3x.png",
"xxxhdpi": "./assets/splash/Splash@4x.png"
}
},
"githubUrl": "https://github.com/vikrantnegi/RN-Book-Search",
"extra": {
"bugsnag": {
"apiKey": "1c07488eccf115775057abea410f9b03"
}
},
"hooks": {
"postPublish": [
{
"file": "@bugsnag/expo/hooks/post-publish.js",
"config": {}
}
]
}
}
}