We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Try to lower minSdkVersion 19 -> 18 https://developer.android.com/about/versions/android-4.3.html
General : https://developer.android.com/guide/topics/manifest/uses-sdk-element.html
The text was updated successfully, but these errors were encountered:
Execute gradlew lint to check code compatibility.
gradlew lint
For example :
Call requires API level 19 (current min is 18): java.util.Objects#requireNonNull
Sorry, something went wrong.
App Crash can be avoided with something like :
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) { Objects.requireNonNull(uri); }
But if API version is lower, code won't be executed...
Objects#hash could be replaced by org.apache.commons.lang3.ObjectUtils#hashCode
Objects#hash
org.apache.commons.lang3.ObjectUtils#hashCode
5833d6b
ghusta
No branches or pull requests
Try to lower minSdkVersion 19 -> 18
https://developer.android.com/about/versions/android-4.3.html
General : https://developer.android.com/guide/topics/manifest/uses-sdk-element.html
The text was updated successfully, but these errors were encountered: