This repository has been archived by the owner on Feb 26, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
49 lines (49 loc) · 1.48 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
{
"expo": {
"name": "Remote Matches",
"owner": "firstisrael",
"scheme": "remotematchesapp",
"slug": "remote-matches",
"version": "1.1.3",
"icon": "./assets/icons/icon-rounded.png",
"primaryColor": "#0066B3",
"splash": {
"image": "./assets/splash.png",
"resizeMode": "cover",
"backgroundColor": "#ffffff"
},
"updates": {
"enabled": false
},
"assetBundlePatterns": ["**/*"],
"ios": {
"requireFullScreen": true,
"supportsTablet": false,
"bundleIdentifier": "org.firstisrael.remotematches",
"icon": "./assets/icons/icon-square.png",
"infoPlist": {
"ITSAppUsesNonExemptEncryption":false,
"NSCameraUsageDescription": "FIRST uses the camera to record matches.",
"NSMicrophoneUsageDescription": "FIRST uses the microphone to record matches.",
"NSPhotoLibraryUsageDescription": "FIRST requires access to your library to allow you to save match videos."
}
},
"android": {
"versionCode": 6,
"package": "org.firstisrael.remotematches",
"icon": "./assets/icons/icon-rounded.png",
"adaptiveIcon": {
"foregroundImage": "./assets/icons/icon-foreground.png",
"backgroundImage": "./assets/icons/icon-background.png"
},
"permissions": [
"CAMERA",
"RECORD_AUDIO",
"MODIFY_AUDIO_SETTINGS",
"READ_EXTERNAL_STORAGE",
"READ_INTERNAL_STORAGE",
"WRITE_EXTERNAL_STORAGE"
]
}
}
}