generated from wataru-maeda/react-native-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 26
/
app.json
69 lines (69 loc) · 1.57 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
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"expo": {
"name": "reactnative-expo-firebase-boilerplate-v2",
"slug": "reactnative-expo-firebase-boilerplate-v2",
"privacy": "public",
"platforms": [
"ios",
"android"
],
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/images/logo-sm.png",
"splash": {
"image": "./assets/images/splash.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"newArchEnabled": true,
"updates": {
"enabled": true,
"fallbackToCacheTimeout": 10000,
"url": "https://u.expo.dev/1650611b-a5b8-4420-9656-60c06429edd4"
},
"assetBundlePatterns": [
"**/*"
],
"ios": {
"supportsTablet": true,
"bundleIdentifier": "reactnative.expo.firebase.boilerplate",
"buildNumber": "1",
"infoPlist": {
"NSPhotoLibraryUsageDescription": "Use the photo library to change your avatar."
},
"userInterfaceStyle": "automatic"
},
"android": {
"package": "reactnative.expo.firebase.boilerplate",
"versionCode": 1,
"userInterfaceStyle": "automatic",
"permissions": [
"VIBRATE",
"CAMERA"
]
},
"packagerOpts": {
"config": "metro.config.js",
"sourceExts": [
"js",
"jsx",
"svg",
"ts",
"tsx"
]
},
"description": "",
"plugins": [
"expo-font",
"expo-asset"
],
"extra": {
"eas": {
"projectId": "1650611b-a5b8-4420-9656-60c06429edd4"
}
},
"runtimeVersion": {
"policy": "appVersion"
}
}
}