-
Notifications
You must be signed in to change notification settings - Fork 61
/
app.json
151 lines (151 loc) · 4.38 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
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": "Pillar Valley",
"description": "Immerse yourself in a suave world of zen",
"slug": "pillar-valley",
"privacy": "public",
"version": "10.0.0",
"orientation": "portrait",
"primaryColor": "#F09458",
"backgroundColor": "#F09458",
"jsEngine": "hermes",
"scheme": "plrvly",
"locales": {
"en": {
"CFBundleName": "Pillar Valley"
},
"es": {
"CFBundleName": "Valle de los Pilares"
}
},
"icon": "./icons/expo.png",
"githubUrl": "https://github.com/evanbacon/expo-pillar-valley",
"splash": {
"image": "./icons/splash.png",
"backgroundColor": "#F09458",
"resizeMode": "cover"
},
"extra": {
"firebaseConfig": {
"apiKey": "AIzaSyAkOa9Hyx6aKaSItFWBbrw_zou6RlQYdck",
"authDomain": "game-f26ee.firebaseapp.com",
"databaseURL": "https://game-f26ee.firebaseio.com",
"projectId": "game-f26ee",
"storageBucket": "game-f26ee.appspot.com",
"messagingSenderId": "997358977148",
"appId": "1:997358977148:web:a3a494984ed9dd976909f9",
"measurementId": "G-3PJBNEEFP4"
},
"eas": {
"projectId": "a1a81680-f84c-11e7-88a7-c74e9d068889"
}
},
"assetBundlePatterns": ["src/assets/**/*", "icons/splash.png"],
"ios": {
"appStoreUrl": "https://itunes.apple.com/us/app/pillar-valley/id1336398804",
"icon": "./icons/pillars/default.png",
"supportsTablet": true,
"bundleIdentifier": "com.evanbacon.pillarvalley",
"googleServicesFile": "./GoogleService-Info.plist",
"config": {
"googleMobileAdsAppId": "ca-app-pub-2312569320461549~5287895909",
"googleMobileAdsAutoInit": true
},
"infoPlist": {
"ITSAppUsesNonExemptEncryption": false
},
"entitlements": {
"com.apple.security.application-groups": ["group.bacon.data"]
},
"associatedDomains": [
"applinks:pillarvalley.netlify.app",
"webcredentials:pillarvalley.netlify.app",
"activitycontinuation:pillarvalley.netlify.app"
]
},
"android": {
"playStoreUrl": "https://play.google.com/store/apps/details?id=com.evanbacon.pillarvalley",
"adaptiveIcon": {
"foregroundImage": "./icons/ios.png",
"backgroundColor": "#F09458"
},
"package": "com.evanbacon.pillarvalley",
"googleServicesFile": "./google-services.json",
"config": {
"googleMobileAdsAppId": "ca-app-pub-2312569320461549~8488774315",
"googleMobileAdsAutoInit": true
},
"permissions": []
},
"web": {
"bundler": "metro",
"output": "static",
"favicon": "./icons/expo.png",
"config": {
"firebase": {
"apiKey": "AIzaSyAkOa9Hyx6aKaSItFWBbrw_zou6RlQYdck",
"authDomain": "game-f26ee.firebaseapp.com",
"databaseURL": "https://game-f26ee.firebaseio.com",
"projectId": "game-f26ee",
"storageBucket": "game-f26ee.appspot.com",
"messagingSenderId": "997358977148",
"appId": "1:997358977148:web:a3a494984ed9dd976909f9",
"measurementId": "G-3PJBNEEFP4"
}
}
},
"plugins": [
[
"expo-build-properties",
{
"ios": {
"newArchEnabled": true,
"ccacheEnabled": false
},
"android": {
"newArchEnabled": true
}
}
],
[
"expo-router",
{
"origin": false,
"headOrigin": "https://pillarvalley.netlify.app"
}
],
[
"expo-quick-actions",
{
"androidIcons": {
"shortcut_achievements": {
"foregroundImage": "./icons/shortcut/achievements.png",
"backgroundColor": "#F09458"
},
"shortcut_licenses": {
"foregroundImage": "./icons/shortcut/licenses.png",
"backgroundColor": "#F09458"
},
"shortcut_feedback": "./icons/shortcut/feedback.png"
}
}
],
[
"@bacons/apple-targets",
{
"appleTeamId": "QQ57RJ5UTD"
}
]
],
"experiments": {
"tsconfigPaths": true,
"typedRoutes": true
},
"runtimeVersion": {
"policy": "sdkVersion"
},
"updates": {
"url": "https://u.expo.dev/a1a81680-f84c-11e7-88a7-c74e9d068889"
}
}
}