Dmitry

Results 6 comments of Dmitry

Have the same trouble, find only one solution - downgrade exoplayer to previous version in my project. In version exo 2.13.3 all work perfectly

I tried solution by @icbaker on Samsung S10(with Exynos, Android 12, which had problems), and it solve this. Thank's a lot

Hi, 1) Yes, application context. 2) Adjust SDK version 4.33.2, updated to 4.33.3, problem still exists Signature SDK version is 2.8.2 (in library name), in manifest android:versionCode="1", android:versionName="0.1.0". I contacted...

Issue happens only with Signature SDK. Without the Signature SDK everything is fine. After updating the version of the Signature SDK, I will write the results here

@dimim @shashansku Sorry for the long reply, update signature library not solved this. I will return to the problem in Q3, because it's non-critical task, but it looks very strange...

I partially solved this. My old StrictMode configuraton: ``` StrictMode.setVmPolicy( StrictMode.VmPolicy.Builder() .detectAll() .penaltyLog() .build() ) ``` Need disable StrictMode.VmPolicy.Builder.detectIncorrectContextUse() Because func permitIncorrectContextUse() are hided, I wrote extension for StrictMode, which...