diff options
| author | cyBerta <cyberta@riseup.net> | 2025-05-20 15:11:55 +0200 |
|---|---|---|
| committer | cyBerta <cyberta@riseup.net> | 2025-05-20 15:11:55 +0200 |
| commit | 59d4377a6fa980a4344318571a9e49021c2a5871 (patch) | |
| tree | fca0033d5714db9303c7f52715e866e6e74112b0 | |
| parent | 377fb7db9e80271febced21cf892a486df92cd35 (diff) | |
update gradle and gradle plugin
| -rw-r--r-- | app/build.gradle | 16 | ||||
| -rw-r--r-- | app/src/main/AndroidManifest.xml | 1 | ||||
| -rw-r--r-- | build.gradle | 2 | ||||
| -rw-r--r-- | gradle/wrapper/gradle-wrapper.properties | 8 |
4 files changed, 12 insertions, 15 deletions
diff --git a/app/build.gradle b/app/build.gradle index b6553fd4..353345f6 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -83,10 +83,6 @@ android { buildConfigField 'boolean', 'actionbar_capitalize_title', 'true' testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" - dexOptions { - jumboMode true - multiDexEnabled true - } ndk { abiFilters 'x86', 'x86_64', 'armeabi-v7a', 'arm64-v8a' @@ -272,20 +268,19 @@ android { applicationIdSuffix ".beta" appSuffix = " Beta" buildConfigField "Boolean", "DEBUG_MODE", "true" - testCoverageEnabled = false // tor-android doesn't know this build-type, fallback to release in that case matchingFallbacks = ['release'] + enableUnitTestCoverage false + enableAndroidTestCoverage false } debug { - testCoverageEnabled = false buildConfigField "Boolean", "DEBUG_MODE", "true" + enableUnitTestCoverage false + enableAndroidTestCoverage false } } - lintOptions { - abortOnError false - } sourceSets { main { @@ -381,6 +376,9 @@ android { setIgnore(true) } } + lint { + abortOnError false + } } dependencies { diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index 254f38d6..49f993f9 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -28,7 +28,6 @@ android:dataExtractionRules="@xml/data_extraction_rules" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" - android:extractNativeLibs="true" android:appCategory="productivity" android:logo="@mipmap/ic_launcher" android:theme="@style/BitmaskTheme" diff --git a/build.gradle b/build.gradle index 0757f4fa..535f413a 100644 --- a/build.gradle +++ b/build.gradle @@ -8,7 +8,7 @@ buildscript { google() } dependencies { - classpath 'com.android.tools.build:gradle:8.1.2' + classpath 'com.android.tools.build:gradle:8.10.0' } } diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index d50248b3..33e8879b 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,7 +1,7 @@ -#Sun Aug 07 23:06:29 CEST 2022 +#Fri May 16 11:29:37 CEST 2025 distributionBase=GRADLE_USER_HOME -distributionUrl=https\://services.gradle.org/distributions/gradle-8.2.1-all.zip -distributionSha256Sum=7c3ad722e9b0ce8205b91560fd6ce8296ac3eadf065672242fd73c06b8eeb6ee distributionPath=wrapper/dists -zipStorePath=wrapper/dists +distributionUrl=https\://services.gradle.org/distributions/gradle-8.12-bin.zip +distributionSha256Sum=7ebdac923867a3cec0098302416d1e3c6c0c729fc4e2e05c10637a8af33a76c5 zipStoreBase=GRADLE_USER_HOME +zipStorePath=wrapper/dists |
