-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
106 lines (106 loc) · 3.3 KB
/
app.json
File metadata and controls
106 lines (106 loc) · 3.3 KB
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"expo": {
"name": "harbor",
"slug": "harbor",
"version": "1.2.0",
"orientation": "portrait",
"icon": "./assets/icon.png",
"userInterfaceStyle": "light",
"newArchEnabled": true,
"description": "Harbor is a unique dating app for Cornell students that focuses on meaningful connections through progressive photo reveal and limited daily interactions. Connect with fellow Cornell students in a safe, respectful environment.",
"splash": {
"image": "./assets/splash-icon.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"ios": {
"supportsTablet": false,
"bundleIdentifier": "app.tryharbor",
"googleServicesFile": "./GoogleService-Info.plist",
"appStoreUrl": "https://apps.apple.com/app/id6752791663",
"entitlements": {
"aps-environment": "production"
},
"infoPlist": {
"ITSAppUsesNonExemptEncryption": false,
"NSCameraUsageDescription": "Harbor needs access to your camera to take profile photos.",
"NSPhotoLibraryUsageDescription": "Harbor needs access to your photo library to select profile photos.",
"NSMicrophoneUsageDescription": "Harbor needs access to your microphone for voice messages in chat.",
"CFBundleDisplayName": "Harbor",
"CFBundleName": "Harbor",
"CFBundleShortVersionString": "1.2.0",
"GIDClientID": "838717009645-na9797ln0flr27gjcgcul6jue999r8eh.apps.googleusercontent.com"
},
"appleTeamId": "V45GUPHT93"
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#ffffff"
},
"permissions": [
"android.permission.RECORD_AUDIO",
"android.permission.MODIFY_AUDIO_SETTINGS",
"android.permission.RECEIVE_BOOT_COMPLETED",
"android.permission.VIBRATE",
"android.permission.WAKE_LOCK"
],
"package": "app.tryharbor",
"playStoreUrl": "https://play.google.com/store/apps/details?id=app.tryharbor",
"googleServicesFile": "./google-services.json"
},
"web": {
"favicon": "./assets/favicon.png"
},
"scheme": "app.tryharbor",
"plugins": [
[
"expo-notifications",
{
"ios": {
"supports-remote-notifications": true
}
}
],
[
"expo-image-picker",
{
"photosPermission": "The app accesses your photos to let you share them with your friends."
}
],
[
"expo-av",
{
"microphonePermission": "Harbor would like to use your microphone for voice recording."
}
],
[
"expo-build-properties",
{
"android": {
"minSdkVersion": 26
},
"ios": {
"deploymentTarget": "15.1",
"useFrameworks": "static"
}
}
],
"@react-native-firebase/app",
"@react-native-firebase/messaging",
[
"@react-native-google-signin/google-signin",
{
"iosUrlScheme": "com.googleusercontent.apps.838717009645-na9797ln0flr27gjcgcul6jue999r8eh"
}
],
"expo-localization"
],
"extra": {
"eas": {
"projectId": "97ea7c4c-5788-42cf-b4b6-a924e333df46"
}
},
"owner": "gabrielcastillo"
}
}