浏览代码

Fixed gradle deprecation warnings

"Space-assignment syntax in Groovy DSL has been deprecated. This is scheduled to be removed in Gradle 10.0"

(cherry picked from commit bf7b9b020ecbceaff649a79a74be4c91cf076342)
Sam Lantinga 11 月之前
父节点
当前提交
06a412cd68
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      android-project/app/build.gradle

+ 2 - 2
android-project/app/build.gradle

@@ -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
     }
 }