-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
102 lines (102 loc) · 2.3 KB
/
Copy pathapp.json
File metadata and controls
102 lines (102 loc) · 2.3 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
{
"expo": {
"name": "iOSAS",
"slug": "iOSAS",
"scheme": "com.danieljohnbyns.iosas",
"version": "1.0.142",
"orientation": "portrait",
"icon": "./assets/icon.png",
"userInterfaceStyle": "light",
"splash": {
"image": "./assets/splash-screen.png",
"resizeMode": "cover",
"backgroundColor": "#ffffff"
},
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.danieljohnbyns.iosas",
"splash": {
"image": "./assets/splash-screen.png",
"resizeMode": "cover",
"backgroundColor": "#ffffff"
},
"infoPlist": {
"ITSAppUsesNonExemptEncryption": false
}
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#ffffff"
},
"splash": {
"image": "./assets/splash-screen.png",
"resizeMode": "cover",
"backgroundColor": "#ffffff"
},
"package": "com.danieljohnbyns.iosas",
"permissions": [
"android.permission.POST_NOTIFICATIONS"
]
},
"web": {
"favicon": "./assets/favicon.png"
},
"plugins": [
[
"expo-build-properties",
{
"android": {
"usesCleartextTraffic": true
},
"ios": {
"flipper": true
}
}
],
[
"expo-asset",
{
"assets": [
"./assets/public/banner.png",
"./assets/public/logo.png"
]
}
],
"expo-font",
[
"expo-updates",
{
"username": "iosas-cdm"
}
],
[
"expo-notifications",
{
"icon": "./assets/notification.png",
"color": "#ffffff",
"sounds": [
"./assets/sounds/notification.mp3"
]
}
]
],
"updates": {
"enabled": true,
"fallbackToCacheTimeout": 0,
"checkAutomatically": "ON_LOAD",
"url": "https://u.expo.dev/5e83bcd4-20b8-43a2-998d-934ca4c89ca1",
"requestHeaders": {
"expo-channel-name": "production"
}
},
"runtimeVersion": "1.0.0",
"experiments": {},
"extra": {
"eas": {
"projectId": "5e83bcd4-20b8-43a2-998d-934ca4c89ca1"
}
},
"owner": "iosas"
}
}