Files
spacedrive/apps/mobile/app.json
2024-11-28 03:21:30 -05:00

72 lines
1.6 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"],
["./scripts/withNativeFunctions.js"]
]
}
}