75 lines
2.0 KiB
JSON
75 lines
2.0 KiB
JSON
{
|
|
"expo": {
|
|
"name": "RN Simple Chatbot",
|
|
"slug": "simple-chatbot-demo",
|
|
"version": "1.0.0",
|
|
"orientation": "portrait",
|
|
"icon": "./assets/images/pipecat.png",
|
|
"userInterfaceStyle": "light",
|
|
"splash": {
|
|
"image": "./assets/images/splash.png",
|
|
"resizeMode": "contain",
|
|
"backgroundColor": "#ffffff"
|
|
},
|
|
"updates": {
|
|
"fallbackToCacheTimeout": 0
|
|
},
|
|
"assetBundlePatterns": [
|
|
"**/*"
|
|
],
|
|
"ios": {
|
|
"supportsTablet": true,
|
|
"bitcode": false,
|
|
"bundleIdentifier": "co.daily.SimpleChatbot",
|
|
"infoPlist": {
|
|
"UIBackgroundModes": [
|
|
"voip"
|
|
]
|
|
}
|
|
},
|
|
"android": {
|
|
"adaptiveIcon": {
|
|
"foregroundImage": "./assets/images/pipecat.png",
|
|
"backgroundColor": "#FFFFFF"
|
|
},
|
|
"package": "co.daily.SimpleChatbot",
|
|
"permissions": [
|
|
"android.permission.ACCESS_NETWORK_STATE",
|
|
"android.permission.BLUETOOTH",
|
|
"android.permission.CAMERA",
|
|
"android.permission.INTERNET",
|
|
"android.permission.MODIFY_AUDIO_SETTINGS",
|
|
"android.permission.RECORD_AUDIO",
|
|
"android.permission.SYSTEM_ALERT_WINDOW",
|
|
"android.permission.WAKE_LOCK",
|
|
"android.permission.FOREGROUND_SERVICE",
|
|
"android.permission.FOREGROUND_SERVICE_CAMERA",
|
|
"android.permission.FOREGROUND_SERVICE_MICROPHONE",
|
|
"android.permission.FOREGROUND_SERVICE_MEDIA_PROJECTION",
|
|
"android.permission.POST_NOTIFICATIONS"
|
|
]
|
|
},
|
|
"web": {
|
|
"favicon": "./assets/images/pipecat.png"
|
|
},
|
|
"plugins": [
|
|
"@config-plugins/react-native-webrtc",
|
|
"@daily-co/config-plugin-rn-daily-js",
|
|
[
|
|
"expo-build-properties",
|
|
{
|
|
"android": {
|
|
"minSdkVersion": 24,
|
|
"compileSdkVersion": 35,
|
|
"targetSdkVersion": 35,
|
|
"buildToolsVersion": "35.0.0"
|
|
},
|
|
"ios": {
|
|
"deploymentTarget": "15.1"
|
|
}
|
|
}
|
|
]
|
|
]
|
|
}
|
|
}
|