Doğan Kablan
Doğan Kablan
tts progress not working on android.
I have the same problem.
I have the same problem. Did you find a solution?
> Inside the method call in the class RNJitsiMeetModule, mJitsiMeetViewReference might be null, which cause black screen ! > > Workaround: inside the method call add this : > >...
I was looking for the solution of this problem for a long time. Today I solved the problem by trying a different way. node_modules > react-native-jitsi-meet > android > build.gradle...
@riyas145 I did not observe any problems with the touch screen. I was able to get a release build, but there were some conflicting packages before I did. I exclude...
I found a solution. It works for me. You can try it. #346
Hello, we have found a solution for this issue, it is available here. https://gist.github.com/araphiel/b3d13ade7f9fe69e99c3d053196557d2 @cs-manughian @Abhinandan-Kushwaha
Added MainActivity.kt in onCreate function WindowCompat.setDecorFitsSystemWindows(window, false) if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) { window.statusBarColor = Color.TRANSPARENT window.navigationBarColor = Color.TRANSPARENT } val content = findViewById(android.R.id.content) ViewCompat.setOnApplyWindowInsetsListener(content) { v, insets -> val bars...