mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-16 02:39:41 +02:00
expo-av was removed in Expo SDK 55, causing 'EXEventEmitter.h' not found build errors. Migrated VoiceRecorder and VoiceMessage to use expo-audio. Also changed EAS build image from "latest" (Xcode 26.2 beta) to "default". Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
82 lines
1.8 KiB
JSON
82 lines
1.8 KiB
JSON
{
|
|
"expo": {
|
|
"name": "Manalink",
|
|
"slug": "manalink",
|
|
"owner": "tilljs",
|
|
"version": "1.0.0",
|
|
"scheme": "manalink",
|
|
"orientation": "portrait",
|
|
"icon": "./assets/icon.png",
|
|
"userInterfaceStyle": "automatic",
|
|
"splash": {
|
|
"image": "./assets/splash.png",
|
|
"resizeMode": "contain",
|
|
"backgroundColor": "#0f0f0f"
|
|
},
|
|
"assetBundlePatterns": ["**/*"],
|
|
"ios": {
|
|
"supportsTablet": true,
|
|
"bundleIdentifier": "how.mana.manalink",
|
|
"infoPlist": {
|
|
"ITSAppUsesNonExemptEncryption": false
|
|
}
|
|
},
|
|
"android": {
|
|
"adaptiveIcon": {
|
|
"foregroundImage": "./assets/adaptive-icon.png",
|
|
"backgroundColor": "#0f0f0f"
|
|
},
|
|
"package": "how.mana.manalink",
|
|
"permissions": [
|
|
"android.permission.RECORD_AUDIO",
|
|
"android.permission.MODIFY_AUDIO_SETTINGS",
|
|
"android.permission.READ_EXTERNAL_STORAGE",
|
|
"android.permission.WRITE_EXTERNAL_STORAGE"
|
|
]
|
|
},
|
|
"web": {
|
|
"bundler": "metro",
|
|
"output": "static",
|
|
"favicon": "./assets/favicon.png"
|
|
},
|
|
"plugins": [
|
|
"expo-router",
|
|
"expo-secure-store",
|
|
"expo-audio",
|
|
[
|
|
"expo-image-picker",
|
|
{
|
|
"photosPermission": "Allow Manalink to select photos for sharing.",
|
|
"cameraPermission": "Allow Manalink to take photos for sharing."
|
|
}
|
|
],
|
|
[
|
|
"expo-media-library",
|
|
{
|
|
"photosPermission": "Allow Manalink to save images to your library.",
|
|
"savePhotosPermission": "Allow Manalink to save images."
|
|
}
|
|
],
|
|
[
|
|
"expo-notifications",
|
|
{
|
|
"icon": "./assets/notification-icon.png",
|
|
"color": "#7c6bff",
|
|
"sounds": []
|
|
}
|
|
]
|
|
],
|
|
"experiments": {
|
|
"typedRoutes": true,
|
|
"tsconfigPaths": true
|
|
},
|
|
"extra": {
|
|
"router": {
|
|
"origin": false
|
|
},
|
|
"eas": {
|
|
"projectId": "a4c5098c-fcae-474e-95b2-13394d8b323d"
|
|
}
|
|
}
|
|
}
|
|
}
|