You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 8, 2021. It is now read-only.
As I was developing a new Android app, I had tremendous problems using the library as is due to the mixing of SDK versions. When I tried to use the library as is (bumping my minSdkVersion down to 22) I not only had libraries that didn't work but the compiler complaining that Google Play wanted at least v26. If I tried to bump my minSdkVersion up to 24 or 26 of course the library would throw an exception on load. I have taken a copy of the code and compiled with the following:
android {
compileSdkVersion 26
}
that seems to work with my app defined as:
compileSdkVersion 28
defaultConfig {
minSdkVersion 24
targetSdkVersion 28
versionCode 1
versionName "1.0"
}