forked from czy0729/Bangumi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
executable file
·73 lines (73 loc) · 2.03 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
{
"expo": {
"description": "A React Native App for https://bgm.tv, tinygrail plugin 5.1.0",
"version": "8.13.1",
"android": {
"versionCode": 813010,
"package": "com.czy0729.bangumi",
"adaptiveIcon": {
"foregroundImage": "./src/assets/images/foreground.png",
"backgroundColor": "#000000"
},
"permissions": [
"android.permission.READ_CALENDAR",
"android.permission.WRITE_CALENDAR"
]
},
"plugins": [
[
"expo-calendar",
{
"calendarPermission": "The app needs to access your calendar."
}
]
],
"name": "Bangumi",
"slug": "bangumi-pro",
"scheme": "bangumi",
"privacy": "public",
"platforms": [
"ios",
"android"
],
"orientation": "default",
"ios": {
"bundleIdentifier": "tv.bangumi.czy0729",
"supportsTablet": true,
"requireFullScreen": true,
"infoPlist": {
"NSCalendarsUsageDescription": "The app needs to access your calendar.",
"NSRemindersUsageDescription": "Allow $(PRODUCT_NAME) to access your reminders",
"NSCalendarsFullAccessUsageDescription": "The app needs to access your calendar.",
"NSRemindersFullAccessUsageDescription": "Allow $(PRODUCT_NAME) to access your reminders"
}
},
"androidStatusBar": {
"barStyle": "dark-content",
"backgroundColor": "#ffffff"
},
"icon": "./src/assets/images/icon.png",
"splash": {
"image": "./src/assets/images/splash.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"extra": {
"storybookEnabled": true,
"eas": {
"projectId": "41867d2f-bc16-46fd-9da6-a38d3e4e8fe4"
}
},
"updates": {
"enabled": false,
"fallbackToCacheTimeout": 0,
"useClassicUpdates": true,
"url": "https://u.expo.dev/41867d2f-bc16-46fd-9da6-a38d3e4e8fe4"
},
"assetBundlePatterns": [
"**/*"
],
"githubUrl": "https://github.com/czy0729/Bangumi",
"runtimeVersion": "1.0.0"
}
}