We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0e6f6ae commit 62cb8bdCopy full SHA for 62cb8bd
1 file changed
android/app/src/main/AndroidManifest.xml
@@ -146,6 +146,15 @@
146
</service>
147
148
<service android:name="io.wazo.callkeep.RNCallKeepBackgroundMessagingService" />
149
+
150
+ <!-- react-native-webrtc ships MediaProjectionService (foregroundServiceType=mediaProjection)
151
+ for screen sharing. We don't use screen sharing, and Android 15+ forbids starting
152
+ restricted foreground service types from BOOT_COMPLETED receivers (expo-notifications
153
+ merges one in). Play Console flags this as a crash risk. Strip it from the merged
154
+ manifest. To re-enable, remove this block and set enableMediaProjectionService=true. -->
155
+ <service
156
+ android:name="com.oney.WebRTCModule.MediaProjectionService"
157
+ tools:node="remove" />
158
</application>
159
160
<queries>
0 commit comments