From f2e1ffe52e876772f55340f716cb5c679affedd0 Mon Sep 17 00:00:00 2001 From: Taco Date: Fri, 9 Sep 2022 11:24:18 -0400 Subject: Update gradle wrapper (#1006) * Update gradle wrapper * Update AGP, fix gradle deprecations --- app/build.gradle | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to 'app') diff --git a/app/build.gradle b/app/build.gradle index 895a5aac..c95e3e07 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -1,11 +1,13 @@ -apply plugin: 'com.android.application' +plugins { + id 'com.android.application' +} android { - compileSdkVersion 31 + compileSdk 31 defaultConfig { applicationId "ml.docilealligator.infinityforreddit" - minSdkVersion 21 - targetSdkVersion 31 + minSdk 21 + targetSdk 31 versionCode 103 versionName "5.3.1" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" @@ -33,7 +35,7 @@ android { targetCompatibility JavaVersion.VERSION_11 } - lintOptions { + lint { disable 'MissingTranslation' } -- cgit v1.2.3