forked from Memmy-App/memmy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
68 lines (68 loc) · 1.68 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
{
"expo": {
"main": "node_modules/expo/AppEntry.js",
"scheme": "memmyapp",
"web": {
"bundler": "metro"
},
"name": "Memmy",
"slug": "memmyapp",
"version": "0.0.1",
"icon": "./assets/icon.png",
"userInterfaceStyle": "automatic",
"splash": {
"image": "./assets/splash.png",
"resizeMode": "contain",
"backgroundColor": "#292524"
},
"jsEngine": "hermes",
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.gkasdorf.memmyapp",
"buildNumber": "78",
"infoPlist": {
"NSPhotoLibraryUsageDescription": "Allow Memmy to access your photos.",
"NSPhotoLibraryAddUsageDescription": "Allow Memmy to save photos."
}
},
"plugins": [
[
"expo-build-properties",
{
"ios": {
"deploymentTarget": "14.0"
}
}
],
[
"expo-media-library",
{
"photosPermission": "Allow Memmy App to access your photos.",
"savePhotosPermission": "Allow Memmy App to save photos.",
"isAccessMediaLocationEnabled": true
}
],
[
"expo-image-picker",
{
"photosPermission": "Allow Memmy App to access your photos"
}
]
],
"android": {
"package": "com.gkasdorf.memmyapp",
"versionCode": 59,
"permissions": [
"android.permission.READ_EXTERNAL_STORAGE",
"android.permission.WRITE_EXTERNAL_STORAGE",
"android.permission.ACCESS_MEDIA_LOCATION",
"android.permission.RECORD_AUDIO"
]
},
"extra": {
"eas": {
"projectId": "ca1ac1e0-c9da-48fc-8cf7-befc49c49d30"
}
}
}
}