oseparovic
oseparovic
Doesn't happen every time. Might be caused by leaving VideoViewActivity at some point during the initialization before it has fully completed. Oneplus 3 - A300 Android 8.0.0 ``` I/MediaCodec: stop...
This a more complex issue that has existed in earlier versions but I thought it was related to other issues that have since been fixed. **Affected version(s)** ``` compile 'net.protyposis.android.mediaplayer:mediaplayer:4.3.2'...
The default release project will crash without proguard; specifically `MovieFragmentBox` when trying to play a video. Not sure if the other rules are necessary.
This line in onStart returns the same date no matter how many times I uninstall the app. mInstallDate = new Date(pref.getLong(KEY_INSTALL_DATE, 0)); The result is that on my test device...
Maybe consider adding the requirement that users add `jcenter` to your readme if they're integrating via gradle e.g. in `build.gradle` ``` repositories { mavenCentral() maven { url "https://jitpack.io" } jcenter()...
Added in iOS6 autorotation methods to make it easier for users to disable autorotation if desired. Simply setting shouldAutorotateToInterfaceOrientation to return NO will no longer prevent autorotation. Tested on 6.1.3
There are several solutions out there that prevent multiclick on android. This library appears to use a watch timer. Adding an explanation to the readme would help users determine if...
It's easier for people to adopt the project. Maybe putting a small blurb about how to refer to project in the readme would be useful too https://forums.spongepowered.org/t/eyeglasses-gradle-tutorial-add-a-github-repo-as-dependency/19648
Since Android 14+ no longer allows us to process GIFs as images in the same way we used to, we now need a separate way to share GIFs . Related...