Fixed gradle deprecation warnings

"Space-assignment syntax in Groovy DSL has been deprecated. This is scheduled to be removed in Gradle 10.0"
This commit is contained in:
Sam Lantinga
2025-03-20 11:02:04 -07:00
parent ac28702504
commit bf7b9b020e

View File

@@ -5,7 +5,7 @@ plugins {
def buildWithCMake = project.hasProperty('BUILD_WITH_CMAKE');
android {
namespace "org.libsdl.app"
namespace = "org.libsdl.testsprite2"
compileSdkVersion 35
defaultConfig {
minSdkVersion 21
@@ -53,7 +53,7 @@ android {
}
lint {
abortOnError false
abortOnError = false
}
}