diff --git a/src/android/app/build.gradle b/src/android/app/build.gradle index 59bd66a62..386abd868 100644 --- a/src/android/app/build.gradle +++ b/src/android/app/build.gradle @@ -18,15 +18,6 @@ android { targetCompatibility JavaVersion.VERSION_1_8 } - lintOptions { - // This is important as it will run lint but not abort on error - // Lint has some overly obnoxious "errors" that should really be warnings - abortOnError false - - //Uncomment disable lines for test builds... - //disable 'MissingTranslation'bin - //disable 'ExtraTranslation' - } defaultConfig { // TODO If this is ever modified, change application_id in strings.xml @@ -100,6 +91,10 @@ android { path "../../../CMakeLists.txt" } } + lint { + abortOnError false + } + namespace 'org.citra.citra_emu' defaultConfig { externalNativeBuild { diff --git a/src/android/app/src/main/AndroidManifest.xml b/src/android/app/src/main/AndroidManifest.xml index 2831a12bc..6895bb704 100644 --- a/src/android/app/src/main/AndroidManifest.xml +++ b/src/android/app/src/main/AndroidManifest.xml @@ -1,6 +1,5 @@ - + diff --git a/src/android/build.gradle b/src/android/build.gradle index 9d7571a4e..507f660d6 100644 --- a/src/android/build.gradle +++ b/src/android/build.gradle @@ -7,7 +7,7 @@ buildscript { jcenter() } dependencies { - classpath 'com.android.tools.build:gradle:7.3.1' + classpath 'com.android.tools.build:gradle:7.4.0' // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files