goffioul

Results 35 comments of goffioul

> The legacy system as already explained above is incompatible with the Android's splashscreen API. The best this can reach us is having 2 splashscreens (one from native android which...

I should have added to my description that removing the call to `requestFocus()` fixes the problem for me. I'm testing this on an AMLogic set-top box with S905X chipset, running...

@dpogue I can confirm that checking with `this.getWindow().getDecorView().hasFocus()` before requesting focus also fixes the problem for me.

Any chance to have this looked at in the near future?

I noticed the same behavior in my app, and I think it's a side-effect of using `beforeload` mechanism. When this is enabled, all navigations are initially cancelled and the `beforeload`...

After some research, I found these useful references: - https://github.com/briansmith/ring/issues/1443 - https://chromium.googlesource.com/chromium/src.git/+/1ff8654cb2647b511cb32dae4ffea9f7929b1ed9 I added the following to `extensions/ffmpeg/build.gradle` and that fixed the link error: ``` android.defaultConfig.externalNativeBuild.cmake.cppFlags = [ '-Wl,-Bsymbolic' ]...

The change in CMake version as I made in `extensions/ffmpeg/build.gradle` is indeed not necessary (but the others in `build_ffmpeg.sh` and the additional link flag in `extensions/ffmpeg/build.gradle` are; the specific NDK...

I see the commit doesn't include the linker flag change. Didn't run into link error when compiling? If not, what NDK version, ffmpeg version and ffmpeg codecs did you test...

For the record, the link error is still present in `2.17.0` with NDK 23.

I used 3.18, because that's the highest version I can see in `sdkmanager`. If cmake is not present in the system, the android gradle plugin will download it automatically according...