forked from callstack/react-native-paper
-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.json
56 lines (56 loc) · 1.46 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
45
46
47
48
49
50
51
52
53
54
55
56
{
"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": "3.14.0",
"orientation": "default",
"primaryColor": "#6200EE",
"userInterfaceStyle": "automatic",
"icon": "./assets/images/paper-icon.png",
"packagerOpts": {
"config": "./metro.config.js",
"projectRoots": ""
},
"platforms": [
"android",
"ios",
"web"
],
"owner": "react-native-paper",
"ios": {
"bundleIdentifier": "com.callstack.reactnativepaperexample",
"buildNumber": "24.0.0"
},
"android": {
"package": "com.callstack.reactnativepaperexample",
"versionCode": 28,
"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"
},
"extra": {
"eas": {
"projectId": "ba8f5139-58fe-48f0-b2f2-2d675b6eb2d4"
}
},
"runtimeVersion": {
"policy": "sdkVersion"
},
"updates": {
"url": "https://u.expo.dev/ba8f5139-58fe-48f0-b2f2-2d675b6eb2d4"
}
}
}