Files
spacedrive/apps/mobile/app.json
Arnab Chakraborty f3e1a47f96 [MOB-110] Fix for Android Permissions (#2592)
* Fix for Android Permissions

Now actually requests the permissions if they aren't granted.

* Remove `console.log``

* Request multiple permissions sequentially

* Better UX

* Add Note for `Number()` patch

* Remove `console.log()`
2024-07-09 23:43:36 +00:00

71 lines
1.5 KiB
JSON

{
"expo": {
"name": "Spacedrive",
"slug": "spacedrive",
"owner": "spacedrive",
"version": "0.1.0",
"orientation": "portrait",
"jsEngine": "hermes",
"scheme": "spacedrive",
"platforms": ["ios", "android"],
"userInterfaceStyle": "automatic",
"icon": "./assets/icon.png",
"updates": {
"enabled": false,
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": ["**/*"],
"ios": {
"supportsTablet": false,
"bundleIdentifier": "com.spacedrive.app",
"infoPlist": {
"ITSAppUsesNonExemptEncryption": false,
"UIBackgroundModes": ["remote-notification"],
"UIFileSharingEnabled": true
},
"entitlements": {
"com.apple.developer.icloud-container-identifiers": [],
"com.apple.developer.icloud-services": ["CloudDocuments"],
"com.apple.developer.ubiquity-container-identifiers": []
}
},
"android": {
"softwareKeyboardLayoutMode": "pan",
"permissions": [
"MANAGE_EXTERNAL_STORAGE",
"READ_MEDIA_AUDIO",
"READ_MEDIA_IMAGES",
"READ_MEDIA_VIDEO"
],
"package": "com.spacedrive.app"
},
"splash": {
"image": "./assets/splash.png",
"backgroundColor": "#000000"
},
"privacy": "hidden",
"plugins": [
[
"expo-build-properties",
{
"android": {
"minSdkVersion": 28
},
"ios": {
"useFrameworks": "static",
"deploymentTarget": "14.0"
}
}
],
[
"expo-av",
{
"microphonePermission": "Allow Spacedrive to access your microphone."
}
],
["./scripts/withRiveAssets.js"],
["./scripts/withAndroidIntent.js"]
]
}
}