-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.json
85 lines (85 loc) · 2.31 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
{
"expo": {
"name": "TetoTetoSeller",
"slug": "seller",
"version": "3.1.3",
"orientation": "portrait",
"icon": "./assets/images/icon.png",
"scheme": "tetotetoseller",
"newArchEnabled": true,
"userInterfaceStyle": "automatic",
"splash": {
"image": "./assets/images/splash.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"assetBundlePatterns": ["**/*"],
"ios": {
"supportsTablet": true,
"googleServicesFile": "./GoogleService-Info.plist",
"infoPlist": {
"NSCameraUsageDescription": "The app accesses your photos and camera for updating your profile picture and item images.",
"UIBackgroundModes": ["fetch", "remote-notification"]
},
"bundleIdentifier": "com.ashabazaar.seller",
"buildNumber": "32"
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/images/adaptive-icon.png",
"backgroundColor": "#ffffff"
},
"versionCode": 32,
"permissions": [
"android.permission.RECORD_AUDIO",
"android.permission.READ_EXTERNAL_STORAGE",
"android.permission.WRITE_EXTERNAL_STORAGE",
"android.permission.DOWNLOAD_WITHOUT_NOTIFICATION",
"android.permission.ACCESS_NETWORK_STATE",
"android.permission.CAMERA"
],
"package": "com.ashabazaar.seller",
"googleServicesFile": "./google-services.json"
},
"web": {
"bundler": "metro",
"output": "static",
"favicon": "./assets/images/icon.png"
},
"plugins": [
"expo-router",
"expo-build-properties",
"expo-font",
"expo-updates",
[
"expo-image-picker",
{
"photosPermission": "The app accesses your photos for updating your profile picture and item images."
}
],
[
"expo-notifications",
{
"icon": "./assets/images/icon.png",
"color": "#ffffff"
}
]
],
"experiments": {
"typedRoutes": true
},
"extra": {
"router": {
"origin": false
},
"eas": {
"projectId": "cceab987-4404-441f-bdac-8fc01754df6a"
}
},
"updates": {
"enabled": true,
"url": "https://rnupdates.tetoteto.co.jp/seller/production/manifest"
},
"runtimeVersion": "3.1.3"
}
}