3. Set Android SDK Version Compatibility
In the build.gradle file, ensure the Android SDK version compatibility. WinZO requires:
Works best with a
compileSdkVersionof 31minSdkVersionof 23 or highertargetSdkVersionof 31
If you want to learn more about what's the difference between compiledSdkVersion and targetSdkVersion, you can check out the official Android developer documentation.
android {
compileSdkVersion 31
defaultConfig {
minSdkVersion 23
targetSdkVersion 31
}
}Last updated
Was this helpful?