Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/quite/mumla.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/build.gradle')
-rw-r--r--app/build.gradle34
1 files changed, 18 insertions, 16 deletions
diff --git a/app/build.gradle b/app/build.gradle
index ab1c35b..4f50370 100644
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -21,7 +21,7 @@ buildscript {
google()
}
dependencies {
- classpath 'com.android.tools.build:gradle:7.0.4'
+ classpath 'com.android.tools.build:gradle:8.1.4'
}
}
apply plugin: 'com.android.application'
@@ -53,11 +53,18 @@ allprojects {
}
android {
- compileSdkVersion 33
+ namespace 'se.lublin.mumla'
+ compileSdk 34
+
+
+ // gradle8: Need to enable this when defaultConfig below contains some custom BuildConfig
+ buildFeatures {
+ buildConfig true
+ }
defaultConfig {
minSdkVersion 14
- targetSdkVersion 33
+ targetSdk 34
multiDexEnabled true
applicationId "se.lublin.mumla"
@@ -107,7 +114,14 @@ android {
}
}
}
-
+ lint {
+ abortOnError true
+ // InvalidPackage is spongycastle-related
+ disable 'InvalidPackage', 'MissingTranslation'
+ explainIssues true
+ ignoreWarnings false
+ quiet false
+ }
// betas may be released every minute
// TODO? dynamic stuff, have to rebuild a lot
applicationVariants.all { variant ->
@@ -118,18 +132,6 @@ android {
}
}
- lintOptions {
- quiet false
-
- // spongycastle-related
- disable "InvalidPackage"
-
- disable "MissingTranslation"
-
- ignoreWarnings false
- abortOnError true
- explainIssues true
- }
}
dependencies {