-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.json
70 lines (70 loc) · 1.9 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
{
"expo": {
"plugins": [
[
"expo-build-properties",
{
"android": {
"usesCleartextTraffic": true
}
}
],
[
"expo-calendar",
{
"calendarPermission": "The app needs to access your calendar."
}
]
],
"name": "SimpleTodo",
"slug": "SimpleTodo",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/icon.png",
"userInterfaceStyle": "light",
"splash": {
"image": "./assets/splash.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"assetBundlePatterns": [
"**/*"
],
"ios": {
"supportsTablet": 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"
}
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#ffffff"
},
"splash": {
"backgroundColor": "#ffffff",
"mdpi": "./assets/mipmap-mdpi/ic_launcher.png",
"hdpi": "./assets/mipmap-hdpi/ic_launcher.png",
"xhdpi": "./assets/mipmap-xhdpi/ic_launcher.png",
"xxhdpi": "./assets/mipmap-xxhdpi/ic_launcher.png",
"xxxhdpi": "./assets/mipmap-xxxhdpi/ic_launcher.png"
},
"permissions": [
"android.permission.READ_CALENDAR",
"android.permission.WRITE_CALENDAR"
],
"package": "com.meowrain.todoMy"
},
"web": {
"favicon": "./assets/web_hi_res_512.png"
},
"extra": {
"eas": {
"projectId": "23f4c5b2-2a66-4139-a944-0f5854161020"
}
}
}
}