mirror of
https://github.com/spacedriveapp/spacedrive.git
synced 2026-04-19 05:59:16 -04:00
* Goodbye Android Project, you won't be missed * fix ignore ignoring Kotlin code * Backport IOS `Podfile` + move Rust crates into `modules/sd-core` * Workaround for issue in OpenSSL build script * Fix IOS * Migrate IOS bridge into Expo Native Module * Optimistic update for library creation * useFrameworks static * add key to infoplist * more keys * fix `Podfile` * Remove IOS project from repo * fix mobile ci * woops wrong place * clean package.json * Make Android's Rust code build again * Add back in `if_watch` patch for IOS --------- Co-authored-by: Utku Bakir <74243531+utkubakir@users.noreply.github.com>
53 lines
1.1 KiB
JSON
53 lines
1.1 KiB
JSON
{
|
|
"expo": {
|
|
"name": "Spacedrive",
|
|
"slug": "spacedrive",
|
|
"owner": "spacedrive",
|
|
"version": "0.0.1",
|
|
"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": {
|
|
"package": "com.spacedrive.app"
|
|
},
|
|
"splash": {
|
|
"image": "./assets/splash.png",
|
|
"backgroundColor": "#000000"
|
|
},
|
|
"privacy": "hidden",
|
|
"plugins": [
|
|
[
|
|
"expo-build-properties",
|
|
{
|
|
"ios": {
|
|
"useFrameworks": "static",
|
|
"deploymentTarget": "13.0"
|
|
}
|
|
}
|
|
]
|
|
]
|
|
}
|
|
}
|