-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.json
35 lines (35 loc) · 886 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
33
34
35
{
"expo": {
"name": "Breaking Bad App",
"slug": "Breaking-Bad-App",
"version": "2.0.0",
"orientation": "portrait",
"icon": "./assets/icon1.png",
"splash": {
"image": "./assets/Splash1.png",
"resizeMode": "cover",
"backgroundColor": "#6a7ca3"
},
"updates": {
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": [
"**/*"
],
"ios": {
"supportsTablet": true
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/icon1.png",
"backgroundColor": "#6a7ca3"
},
"package": "com.developedbynick.BreakingBadApp"
},
"web": {
"favicon": "./assets/favicon.png"
},
"description": "The app where you can find, search, filter and favorite breaking bad characters.",
"githubUrl": "https://github.com/developedbynick/breaking-bad-app"
}
}