mirror of
https://github.com/anomalyco/opencode.git
synced 2026-05-04 03:37:17 +00:00
59 lines
1.5 KiB
JSON
59 lines
1.5 KiB
JSON
{
|
|
"expo": {
|
|
"name": "mobile-voice",
|
|
"slug": "mobile-voice",
|
|
"version": "1.0.0",
|
|
"orientation": "portrait",
|
|
"icon": "./assets/images/icon.png",
|
|
"scheme": "mobilevoice",
|
|
"userInterfaceStyle": "automatic",
|
|
"ios": {
|
|
"icon": "./assets/expo.icon",
|
|
"bundleIdentifier": "com.anomalyco.mobilevoice",
|
|
"infoPlist": {
|
|
"NSMicrophoneUsageDescription": "This app needs microphone access for live speech-to-text dictation."
|
|
}
|
|
},
|
|
"android": {
|
|
"adaptiveIcon": {
|
|
"backgroundColor": "#E6F4FE",
|
|
"foregroundImage": "./assets/images/android-icon-foreground.png",
|
|
"backgroundImage": "./assets/images/android-icon-background.png",
|
|
"monochromeImage": "./assets/images/android-icon-monochrome.png"
|
|
},
|
|
"permissions": ["RECORD_AUDIO", "POST_NOTIFICATIONS"],
|
|
"predictiveBackGestureEnabled": false
|
|
},
|
|
"web": {
|
|
"output": "static",
|
|
"favicon": "./assets/images/favicon.png"
|
|
},
|
|
"plugins": [
|
|
"expo-router",
|
|
[
|
|
"expo-splash-screen",
|
|
{
|
|
"backgroundColor": "#121212",
|
|
"android": {
|
|
"image": "./assets/images/splash-icon.png",
|
|
"imageWidth": 76
|
|
}
|
|
}
|
|
],
|
|
"react-native-audio-api",
|
|
"expo-asset",
|
|
"expo-audio",
|
|
[
|
|
"expo-notifications",
|
|
{
|
|
"enableBackgroundRemoteNotifications": true
|
|
}
|
|
]
|
|
],
|
|
"experiments": {
|
|
"typedRoutes": true,
|
|
"reactCompiler": true
|
|
}
|
|
}
|
|
}
|