-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathapp.json
47 lines (47 loc) · 1.25 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
{
"expo": {
"name": "Easy Vtu",
"slug": "easy-vtu",
"version": "1.0.0",
"entryPoint": "./index.js",
"orientation": "portrait",
"icon": "./assets/images/icon.png",
"splash": {
"image": "./assets/images/splash.png",
"resizeMode": "contain",
"backgroundColor": "#FFFFFF"
},
"updates": {
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": [
"**/*"
],
"plugins": [
[
"expo-image-picker",
{
"photosPermission": "The app accesses your photos to let you update your profile image",
"cameraPermission": "Allow EasyVtu to access your camera",
"microphonePermission": false
}
]
],
"ios": {
"supportsTablet": true,
"appStoreUrl": "https://apps.apple.com/app/apple-store/id123456789?action=write-review"
},
"android": {
"permissions": ["READ_CONTACTS"],
"package": "com.devvie.easyvtu",
"playStoreUrl": "https://play.google.com/store/apps/details?id=com.devvie.easyvtu&showAllReviews=true",
"adaptiveIcon": {
"foregroundImage": "./assets/images/icon.png",
"backgroundColor": "#FFFFFF"
}
},
"web": {
"favicon": "./assets/images/icon.png"
}
}
}