As a short term fix, I’ve forced my builds to use API 34 by adding a gradle file to my project.
The file goes here: yourProject/AndroidResources/corona.gradle
and the content of the file is:
android.defaultConfig.ndk.abiFilters "armeabi-v7a", "arm64-v8a"
ext["excludeCoronaPlugin"] = true
ext["includeCoronaPlugin"] = ["dependencies"]
android {
compileSdkVersion 34
defaultConfig {
minSdkVersion 26
targetSdkVersion 34
}
}
I’ve had a build out for a week or two now which uses this workaround, and I haven’t encountered any problems from it.