あるふぁ2048

Results 4 comments of あるふぁ2048

Maybe this is the same issue: https://github.com/MasayukiSuda/ExoPlayerFilter/issues/53

This Intent is seen when using WebView. [Please see here for more details.](https://developer.chrome.com/docs/android/intents) Usually need like below code. ``` if (url.startsWith("intent://")) { val intent = Intent.parseUri(url, Intent.URI_INTENT_SCHEME); context.startActivity(intent) } ```

I already set this, is something wrong? `android:foregroundServiceType="camera|microphone|phoneCall"`

I think only add `Build.VERSION.SDK_INT > Build.VERSION_CODES.N` condition like [flutter callkeep](https://github.com/flutter-webrtc/callkeep/blob/50e75bac23b38ac57f8f37eac553297dcfd3453f/android/src/main/java/io/wazo/callkeep/VoiceConnectionService.java#L152C13-L152C59). [according to this line](https://github.com/react-native-webrtc/react-native-callkeep/blob/cc308ce2ed33bcc12ef1ef95468f4a81de7d6d4e/android/src/main/java/io/wazo/callkeep/VoiceConnectionService.java#L296), Android 7 or below don't support Foreground Service.