fix(mobile): use @config-plugins/react-native-webrtc, link EAS project
- replace bogus @livekit/* plugin entries with @config-plugins/react-native-webrtc@^10 (real Expo config plugin; LiveKit packages do not ship app.plugin.js) - eas init linked project @bygalax/netralax (id 255e2fde-...) - app.json picked up Expo defaults (Android permissions, owner) Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
+30
-8
@@ -13,19 +13,33 @@
|
||||
"resizeMode": "contain",
|
||||
"backgroundColor": "#0b0b0f"
|
||||
},
|
||||
"assetBundlePatterns": ["**/*"],
|
||||
"assetBundlePatterns": [
|
||||
"**/*"
|
||||
],
|
||||
"ios": {
|
||||
"supportsTablet": true,
|
||||
"bundleIdentifier": "cloud.netralax.app",
|
||||
"infoPlist": {
|
||||
"ITSAppUsesNonExemptEncryption": false,
|
||||
"UIBackgroundModes": ["audio"],
|
||||
"UIBackgroundModes": [
|
||||
"audio"
|
||||
],
|
||||
"NSMicrophoneUsageDescription": "Netralax nutzt das Mikrofon für Sprachanrufe."
|
||||
}
|
||||
},
|
||||
"bitcode": false
|
||||
},
|
||||
"android": {
|
||||
"package": "cloud.netralax.app",
|
||||
"permissions": ["RECORD_AUDIO"],
|
||||
"permissions": [
|
||||
"android.permission.RECORD_AUDIO",
|
||||
"android.permission.ACCESS_NETWORK_STATE",
|
||||
"android.permission.CAMERA",
|
||||
"android.permission.INTERNET",
|
||||
"android.permission.MODIFY_AUDIO_SETTINGS",
|
||||
"android.permission.SYSTEM_ALERT_WINDOW",
|
||||
"android.permission.WAKE_LOCK",
|
||||
"android.permission.BLUETOOTH"
|
||||
],
|
||||
"adaptiveIcon": {
|
||||
"foregroundImage": "./assets/adaptive-icon.png",
|
||||
"backgroundColor": "#0b0b0f"
|
||||
@@ -48,16 +62,24 @@
|
||||
"cameraPermission": "Netralax nutzt die Kamera für Fotos in Nachrichten."
|
||||
}
|
||||
],
|
||||
"@livekit/react-native-webrtc",
|
||||
"@livekit/react-native"
|
||||
[
|
||||
"@config-plugins/react-native-webrtc",
|
||||
{
|
||||
"microphonePermission": "Netralax nutzt das Mikrofon für Sprachanrufe."
|
||||
}
|
||||
]
|
||||
],
|
||||
"experiments": {
|
||||
"typedRoutes": true
|
||||
},
|
||||
"extra": {
|
||||
"eas": {
|
||||
"projectId": "REPLACE_WITH_EAS_PROJECT_ID"
|
||||
"projectId": "255e2fde-3e27-4749-be53-8f0e13ed0ab0"
|
||||
},
|
||||
"router": {
|
||||
"origin": false
|
||||
}
|
||||
}
|
||||
},
|
||||
"owner": "bygalax"
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user