-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
155 lines (155 loc) · 4.34 KB
/
Copy pathapp.json
File metadata and controls
155 lines (155 loc) · 4.34 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
{
"expo": {
"name": "Hiruu",
"slug": "Hiruu",
"version": "1.1.4",
"orientation": "portrait",
"icon": "./assets/images/icon.png",
"scheme": "hiruu",
"userInterfaceStyle": "light",
"ios": {
"buildNumber": "6",
"bundleIdentifier": "com.xyryc.hiruu",
"supportsTablet": true,
"userInterfaceStyle": "automatic",
"googleServicesFile": "./GoogleService-Info.plist",
"associatedDomains": ["applinks:hiruu.app", "applinks:www.hiruu.app"],
"infoPlist": {
"NSCameraUsageDescription": "Allow Hiruu to access your camera to scan QR codes.",
"NSMicrophoneUsageDescription": "Allow Hiruu to access your microphone for audio calls."
},
"appleTeamId": "3KZ7XWRYB7"
},
"android": {
"versionCode": 6,
"package": "com.xyryc.hiruu",
"adaptiveIcon": {
"foregroundImage": "./assets/images/adaptive-icon.png",
"backgroundColor": "#ffffff"
},
"softwareKeyboardLayoutMode": "resize",
"userInterfaceStyle": "automatic",
"googleServicesFile": "./google-services.json",
"permissions": [
"android.permission.READ_MEDIA_VISUAL_USER_SELECTED",
"android.permission.READ_MEDIA_IMAGES",
"android.permission.READ_MEDIA_VIDEO",
"android.permission.CAMERA",
"android.permission.RECORD_AUDIO",
"android.permission.READ_EXTERNAL_STORAGE",
"android.permission.WRITE_EXTERNAL_STORAGE",
"android.permission.ACCESS_MEDIA_LOCATION",
"android.permission.READ_MEDIA_AUDIO",
"android.permission.MODIFY_AUDIO_SETTINGS"
],
"intentFilters": [
{
"action": "VIEW",
"autoVerify": true,
"data": [
{
"scheme": "https",
"host": "hiruu.app",
"pathPrefix": "/u/"
},
{
"scheme": "https",
"host": "www.hiruu.app",
"pathPrefix": "/u/"
}
],
"category": ["BROWSABLE", "DEFAULT"]
}
]
},
"web": {
"bundler": "metro",
"output": "static",
"favicon": "./assets/images/favicon.png"
},
"plugins": [
[
"expo-build-properties",
{
"ios": {
"useFrameworks": "static",
"forceStaticLinking": [
"RNFBAnalytics",
"RNFBApp",
"RNFBAppCheck",
"RNFBAuth",
"RNFBCrashlytics",
"RNFBFirestore",
"RNFBMessaging",
"RNFBRemoteConfig",
"RNFBStorage"
]
}
}
],
[
"expo-camera",
{
"cameraPermission": "Allow Hiruu to access your camera to scan QR codes."
}
],
["expo-apple-authentication"],
"@react-native-firebase/app",
"@react-native-firebase/auth",
"@react-native-firebase/messaging",
[
"expo-media-library",
{
"photosPermission": "Allow Hiruu to access your photos.",
"savePhotosPermission": "Allow Hiruu to save photos to your device.",
"isAccessMediaLocationEnabled": true
}
],
[
"expo-image-picker",
{
"photosPermission": "Allow Hiruu to access your photos to select images.",
"cameraPermission": "Allow Hiruu to use your camera to take photos."
}
],
"expo-router",
[
"expo-splash-screen",
{
"image": "./assets/images/splash-icon.png",
"imageWidth": 200,
"resizeMode": "contain",
"backgroundColor": "#ffffff"
}
],
"expo-web-browser",
"expo-localization",
"./plugins/withNotificationServiceLocalization",
"expo-audio",
"expo-asset",
[
"@stripe/stripe-react-native",
{
"merchantIdentifier": "merchant.com.xyryc.hiruu",
"enableGooglePay": false
}
],
"expo-video",
"@react-native-community/datetimepicker",
"expo-font",
"expo-image",
"expo-sharing",
"expo-status-bar"
],
"experiments": {
"typedRoutes": true
},
"extra": {
"notificationServiceExtensionSuffix": "nsext",
"router": {},
"eas": {
"projectId": "37ca5d2f-44fb-4783-ab28-c8b32b0b2d21"
}
}
}
}