forked from callstack/react-native-paper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
44 lines (44 loc) · 1.19 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
{
"expo": {
"name": "React Native Paper Example",
"description": "Example app for React Native Paper: https://callstack.github.io/react-native-paper/",
"slug": "react-native-paper-example",
"privacy": "public",
"version": "1.0.0",
"orientation": "default",
"primaryColor": "#6200EE",
"userInterfaceStyle": "automatic",
"icon": "./assets/images/paper-icon.png",
"packagerOpts": {
"config": "./metro.config.js",
"projectRoots": ""
},
"platforms": [
"android",
"ios"
],
"owner": "react-native-paper",
"ios": {
"bundleIdentifier": "com.callstack.reactnativepaperexample",
"buildNumber": "3.0.0"
},
"android": {
"package": "com.callstack.reactnativepaperexample",
"versionCode": 4,
"permissions": [
"READ_EXTERNAL_STORAGE",
"WRITE_EXTERNAL_STORAGE"
],
"icon": "./assets/images/paper-icon.png",
"adaptiveIcon": {
"foregroundImage": "./assets/images/android-icon.png",
"backgroundColor": "#6200EE"
}
},
"splash": {
"image": "./assets/images/splash.png",
"backgroundColor": "#6200EE",
"resizeMode": "cover"
}
}
}