3. Set Android SDK Version Compatibility
In the build.gradle
file, ensure the Android SDK version compatibility. WinZO requires:
Works best with a
compileSdkVersion
of 31minSdkVersion
of 23 or highertargetSdkVersion
of 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?