mirror of
https://github.com/spacedriveapp/spacedrive.git
synced 2026-02-20 07:37:26 -05:00
* 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()`
71 lines
1.5 KiB
JSON
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"]
|
|
]
|
|
}
|
|
}
|