-
Notifications
You must be signed in to change notification settings - Fork 32
/
app.json
121 lines (121 loc) · 3.36 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"expo": {
"name": "V2Fun",
"slug": "v2ex",
"version": "1.7.7",
"scheme": "v2fun",
"jsEngine": "jsc",
"icon": "./assets/icon.png",
"userInterfaceStyle": "automatic",
"splash": {
"image": "./assets/splash.png",
"resizeMode": "contain",
"backgroundColor": "#000000"
},
"updates": {
"fallbackToCacheTimeout": 0,
"url": "https://u.expo.dev/dd398bbd-e8f2-4519-a933-ec68a355980f"
},
"assetBundlePatterns": ["**/*"],
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.liaoliao666.v2ex",
"buildNumber": "1.7.7.3",
"entitlements": {
"aps-environment": "development"
},
"infoPlist": {
"LSMinimumSystemVersion": "13.0.0"
},
"privacyManifests": {
"NSPrivacyAccessedAPITypes": [
{
"NSPrivacyAccessedAPIType": "NSPrivacyAccessedAPICategoryUserDefaults",
"NSPrivacyAccessedAPITypeReasons": ["CA92.1"]
},
{
"NSPrivacyAccessedAPIType": "NSPrivacyAccessedAPICategoryFileTimestamp",
"NSPrivacyAccessedAPITypeReasons": ["DDA9.1"]
},
{
"NSPrivacyAccessedAPIType": "NSPrivacyAccessedAPICategoryDiskSpace",
"NSPrivacyAccessedAPITypeReasons": ["85F4.1"]
},
{
"NSPrivacyAccessedAPIType": "NSPrivacyAccessedAPICategorySystemBootTime",
"NSPrivacyAccessedAPITypeReasons": ["35F9.1"]
}
]
}
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#000000"
},
"package": "com.liaoliao666.v2ex"
},
"web": {
"favicon": "./assets/favicon.png"
},
"extra": {
"eas": {
"projectId": "dd398bbd-e8f2-4519-a933-ec68a355980f"
}
},
"runtimeVersion": {
"policy": "sdkVersion"
},
"plugins": [
// https://github.com/expo/expo/issues/21036
[
"expo-navigation-bar",
{
"position": "absolute",
"backgroundColor": "#000000",
"buttonStyle": "light"
}
],
[
"expo-build-properties",
{
// "ios": {
// "newArchEnabled": true
// },
"android": {
// "newArchEnabled": true,
// https://www.reddit.com/r/expo/comments/1abfxrq/sdk50_unusually_large_apk_size/
"useLegacyPackaging": true,
"enableProguardInReleaseBuilds": true,
"enableShrinkResourcesInReleaseBuilds": true,
"packagingOptions": {
"exclude": ["lib/x86/**"]
},
"manifestQueries": {
// https://github.com/liaoliao666/v2ex/issues/11
"intent": [
{
"action": "VIEW",
"data": { "scheme": "http" }
},
{
"action": "VIEW",
"data": { "scheme": "https" }
},
{
"action": "VIEW",
"data": { "scheme": "geo" }
},
{
"action": "VIEW",
"data": { "scheme": "google.navigation" }
}
],
"package": ["com.liaoliao666.v2ex"]
}
}
}
]
]
}
}