Aradi Patrik

Results 18 comments of Aradi Patrik

Hi @dway123, @droid-girl, Thank you for your insights on the issue. As per our discussion, I've created a sample project that consistently reproduces the z-order inconsistency issue we've been observing...

@ber4444 For my project I ended up having use case modules, like: ImageManipulations, FaceDetection, Segmentation ImageManipulations contains use-cases like converting white pixels to transparent ones etc... FaceDetection and Segmentation modules...

Hi @ber4444 Thanks that's some great information! 🙌 For my next project I will definitely skip the api/impl modules for my usecase and data classes, and have the features depend...

I am facing the same issue. Couldn't reproduce it with the devices available to me but I see the error in crashlytics and received a one star review because the...

@claincly I implemented the changes you requested. Please take a look and resolve it if it's OK. Let me know if there's anything else we need to change before this...

@claincly Any updates on this? Can I assist in any way?

I have the same issue. After returning to the app the video is blank. ``` kotlin VideoPlayer( mediaItems = listOf(VideoPlayerMediaItem.NetworkMediaItem(videoUrl)), modifier = Modifier .aspectRatio(aspect) .align(Alignment.Center) .clickable { onClick() }, controllerConfig...

@Blefish @dsa28s I've managed to workaround the issue by removing the view from the composition when onPause is called and adding it back in when onResume is called. Here is...

Adding the following lines to my proguard.pro fixed it ``` # Keep LogSessionId class and related classes -keep class android.media.metrics.LogSessionId { *; } -keep class android.media.metrics.** { *; } #...

@microkatz Thanks for checking. I'm not using any effects. I only use a pre-warming exoplayer with a single media item inside it. So far I only see the stacktrace in...