forked from calebnance/expo-spotify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
31 lines (31 loc) · 773 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
{
"expo": {
"name": "Expo Spotify",
"description": "Spotify: UI Clone with React Native & Expo",
"scheme": "spotifyclone",
"slug": "spotifyclone",
"privacy": "public",
"version": "0.0.1",
"platforms": ["android", "ios", "web"],
"githubUrl": "https://github.com/calebnance/expo-spotify",
"orientation": "portrait",
"primaryColor": "#181414",
"icon": "src/assets/icon.png",
"splash": {
"backgroundColor": "#181414",
"image": "src/assets/splash.png",
"resizeMode": "contain"
},
"updates": {
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": ["**/*"],
"android": {
"versionCode": 1
},
"ios": {
"buildNumber": "0.0.1",
"supportsTablet": true
}
}
}