Files
Schnappix/app.json
T

55 lines
1.3 KiB
JSON

{
"expo": {
"name": "Schnappix",
"slug": "Schnappix",
"version": "1.0.0",
"orientation": "landscape",
"icon": "./assets/icon.png",
"userInterfaceStyle": "dark",
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.schnappix"
},
"android": {
"package": "com.schnappix",
"adaptiveIcon": {
"backgroundColor": "#121214",
"foregroundImage": "./assets/icon.png"
},
"permissions": [
"android.permission.CAMERA",
"android.permission.RECORD_AUDIO",
"android.permission.INTERNET",
"android.permission.ACCESS_NETWORK_STATE"
]
},
"plugins": [
[
"expo-media-library",
{
"photosPermission": "Allow Schnappix to save captured photos to your gallery.",
"savePhotosPermission": "Allow Schnappix to save captured photos to your gallery."
}
],
[
"expo-camera",
{
"cameraPermission": "Allow Schnappix to access the tablet's front-facing camera."
}
],
[
"expo-build-properties",
{
"android": {
"extraMavenRepos": [
"https://jitpack.io"
]
}
}
],
"./plugins/withKioskAdmin",
"./plugins/withUsbCamera"
]
}
}