-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
64 lines (63 loc) · 1.76 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
{
"expo": {
"userInterfaceStyle": "dark",
"name": "TCM",
"scheme": "tcm",
"slug": "ptcg_marketplace",
"version": "1.30.0",
"orientation": "portrait",
"icon": "./assets/icon.png",
"sdkVersion": "46.0.0",
"splash": {
"image": "./assets/splash.png",
"resizeMode": "cover",
"backgroundColor": "#1b1b1b"
},
"updates": {
"fallbackToCacheTimeout": 300,
"enabled": true,
"checkAutomatically": "ON_LOAD",
"url": "https://u.expo.dev/29d0103a-1786-452e-99a4-a43644a8cbbc"
},
"assetBundlePatterns": ["**/*"],
"ios": {
"supportsTablet": true,
"bundleIdentifier": "app.ptcg.marketplace",
"infoPlist": {
"NSPhotoLibraryUsageDescription": "Allow TCM to access your photos.",
"NSPhotoLibraryAddUsageDescription": "Allow TCM to save photos."
},
"runtimeVersion": {
"policy": "sdkVersion"
}
},
"android": {
"package": "app.ptcg.marketplace",
"googleServicesFile": "./google-services.json",
"userInterfaceStyle": "dark",
"permissions": [
"android.permission.READ_EXTERNAL_STORAGE",
"android.permission.WRITE_EXTERNAL_STORAGE",
"android.permission.ACCESS_MEDIA_LOCATION",
"android.permission.RECORD_AUDIO"
],
"versionCode": 1300,
"config": {
"googleMobileAdsAppId": "ca-app-pub-2637485113454186~8246765572"
},
"runtimeVersion": "1.0.0"
},
"plugins": [
[
"expo-media-library",
{
"photosPermission": "Allow TCM to access your photos.",
"savePhotosPermission": "Allow TCM to save photos.",
"isAccessMediaLocationEnabled": "true"
}
],
"sentry-expo",
"expo-image-picker"
]
}
}