-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathapp.json
More file actions
56 lines (56 loc) · 1.31 KB
/
app.json
File metadata and controls
56 lines (56 loc) · 1.31 KB
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": {
"version": "0.1.0",
"runtimeVersion": "0.1.0",
"slug": "reactnativenextjstemplate",
"name": "React Native + Next.js",
"orientation": "portrait",
"icon": "./public/app-icon.png",
"userInterfaceStyle": "light",
"splash": {
"image": "./public/app-splash.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"assetBundlePatterns": [
"**/*"
],
"ios": {
"bundleIdentifier": "com.tomorroworld.reactnativenextjstemplate",
"supportsTablet": true,
"config": {
"usesNonExemptEncryption": false
}
},
"android": {
"package": "com.tomorroworld.reactnativenextjstemplate",
"versionCode": 1000001000,
"permissions": [],
"adaptiveIcon": {
"foregroundImage": "./public/app-icon-adaptive.png",
"backgroundColor": "#ffffff"
}
},
"web": {
"favicon": "./public/favicon.png"
},
"plugins": [
[
"expo-build-properties",
{
"android": {
"enableProguardInReleaseBuilds": true
}
}
]
],
"extra": {
"eas": {
"projectId": "3073dfd4-4c5c-46d9-bfcb-169f6e8b2c37"
}
},
"updates": {
"url": "https://u.expo.dev/3073dfd4-4c5c-46d9-bfcb-169f6e8b2c37"
}
}
}