-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathapp.json
More file actions
151 lines (151 loc) · 4.39 KB
/
Copy pathapp.json
File metadata and controls
151 lines (151 loc) · 4.39 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
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
{
"expo": {
"name": "华师匣子",
"slug": "ccnubox",
"owner": "muxi_fe",
"version": "3.1.7",
"runtimeVersion": "3.1.7",
"platforms": ["ios", "android"],
"orientation": "portrait",
"icon": "./src/assets/images/icon.png",
"scheme": "ccnubox",
"userInterfaceStyle": "automatic",
"updates": {
"url": "https://ota.ccnubox.muxixyz.com/65d670f0-9625-4631-9603-f4b11f44e621",
"checkAutomatically": "ON_LOAD",
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": [
"src/assets/images/",
"src/assets/data/",
"src/assets/fonts"
],
"extra": {
"EXPO_PUBLIC_API_URL": "https://v3.ccnubox.muxixyz.com/api/v1",
"router": {
"origin": false
},
"eas": {
"projectId": "65d670f0-9625-4631-9603-f4b11f44e621"
},
"expoConfig": {}
},
"ios": {
"appleTeamId": "7K67YDYQD8",
"icon": {
"light": "./src/assets/images/icon-ios-light.png",
"dark": "./src/assets/images/icon-ios-dark.png",
"tinted": "./src/assets/images/icon-ios-tinted.png"
},
"supportsTablet": true,
"bundleIdentifier": "release-20240916",
"buildNumber": "23",
"infoPlist": {
"NSLocationWhenInUseUsageDescription": "用于地图功能获取您的当前位置并提供定位服务。",
"NSPhotoLibraryUsageDescription": "用于选择您主动添加的图片,以完成反馈或设置课表背景。",
"NSPhotoLibraryAddUsageDescription": "用于将您主动生成的课表截图保存到相册。",
"NSAppTransportSecurity": {
"NSAllowsArbitraryLoads": true
},
"LSApplicationQueriesSchemes": ["weixin", "alipays", "tel", "sms"]
},
"entitlements": {
"aps-environment": "development",
"com.apple.security.application-groups": ["group.release-20240916"]
}
},
"locales": {
"zh-CN": "./languages/zh-CN.json",
"en-US": "./languages/en-US.json"
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./src/assets/images/android-icon-foreground.png",
"backgroundColor": "#6666FF"
},
"permissions": [
"android.permission.ACCESS_COARSE_LOCATION",
"android.permission.ACCESS_FINE_LOCATION",
"android.permission.POST_NOTIFICATIONS",
"android.permission.RECEIVE_BOOT_COMPLETED"
],
"package": "com.muxixyz.ccnubox",
"versionCode": 23
},
"plugins": [
"./plugins/remove-unused-ios-permissions",
"expo-router",
"expo-web-browser",
"expo-font",
[
"expo-image-picker",
{
"photosPermission": "用于选择您主动添加的图片,以完成反馈或设置课表背景。",
"cameraPermission": false,
"microphonePermission": false
}
],
[
"expo-media-library",
{
"photosPermission": "用于访问您主动选择的图片。",
"savePhotosPermission": "用于将您主动生成的课表截图保存到相册。",
"granularPermissions": ["photo"]
}
],
[
"react-native-edge-to-edge",
{
"android": {
"parentTheme": "Default",
"enforceNavigationBarContrast": false
}
}
],
[
"mx-jpush-expo",
{
"channel": "coursetable",
"packageName": "com.muxixyz.ccnubox"
}
],
[
"expo-splash-screen",
{
"backgroundColor": "#7D82F4",
"image": "./src/assets/images/splash-icon-light.png",
"dark": {
"image": "./src/assets/images/splash-icon-dark.png",
"backgroundColor": "#f1f1f1"
},
"imageWidth": 200
}
],
[
"expo-build-properties",
{
"android": {
"usesCleartextTraffic": true
},
"ios": {
"buildReactNativeFromSource": false,
"usePrecompiledModules": false
}
}
],
"expo-secure-store",
[
"./plugins/config-android-url-scheme.js",
{
"packages": ["com.tencent.mm", "com.eg.android.AlipayGphone"],
"schemes": ["weixin", "alipays", "tel", "sms"]
}
],
"@bacons/apple-targets",
"./plugins/ios-disable-liquid-glass"
],
"experiments": {
"typedRoutes": true
}
}
}