-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
54 lines (54 loc) · 1.66 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
{
"expo": {
"name": "Friends++",
"slug": "friends-life-app",
"version": "1.0.4",
"orientation": "portrait",
"icon": "./assets/friends-life-logo.png",
"userInterfaceStyle": "light",
"splash": {
"image": "./assets/friends-life-logo.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"assetBundlePatterns": ["**/*"],
"ios": {
"supportsTablet": true,
"infoPlist": {
"NSCameraUsageDescription": "Your privacy is important to us. This app requests access to your camera to allow you to take photos for your profile picture or to create posts.",
"NSPhotoLibraryUsageDescription": "Your privacy is important to us. This app requests access to your photo library to allow you to select photos for your profile picture or to create posts. For example, you can upload a new profile picture from your saved photos.",
"UIBackgroundModes": ["remote-notification"],
"entitlements": {
"aps-environment": "production"
}
},
"bundleIdentifier": "com.friendslifedev.friendslifeapp",
"buildNumber": "7"
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/friends-life-logo.png",
"backgroundColor": "#ffffff"
},
"permissions": ["CAMERA", "READ_EXTERNAL_STORAGE"]
},
"web": {
"favicon": "./assets/friends-life-logo.png"
},
"extra": {
"eas": {
"projectId": "80b9a03c-5ace-4045-b737-e0218d8c740c"
}
},
"plugins": [
[
"expo-build-properties",
{
"ios": {
"deploymentTarget": "16.0"
}
}
]
]
}
}