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:
byGalax
2026-05-14 12:44:24 +02:00
parent 5a3dc15704
commit 122191276e
3 changed files with 43 additions and 8 deletions
+30 -8
View File
@@ -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"
}
}