-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.json
31 lines (31 loc) · 962 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": "RN Playground",
"slug": "react-native-playground-app",
"privacy": "public",
"description": "This project will be my playground for different React Native related topics. To try out stuff, it does not need always a new project, it can be included all in one.",
"githubUrl": "https://github.com/donni106/react-native-playground-app/pulls",
"platforms": ["ios", "android", "web"],
"version": "0.3.1",
"orientation": "portrait",
"icon": "./assets/images/icon.png",
"scheme": "rnplayground",
"splash": {
"image": "./assets/images/splash.png",
"resizeMode": "cover",
"backgroundColor": "#ffffff"
},
"updates": {
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": ["**/*"],
"ios": {
"supportsTablet": true
},
"androidStatusBar": {
"barStyle": "dark-content",
"translucent": true,
"backgroundColor": "#00000000"
}
}
}