Skip to content

Commit 1c6c7ae

Browse files
committed
Upgrade to Gradle 8.5
1 parent 487ff48 commit 1c6c7ae

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

app/build.gradle

+7-3
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,9 @@ android {
8181
proguardFiles getDefaultProguardFile(
8282
'proguard-android-optimize.txt'),
8383
'proguard-project.txt'
84-
testCoverageEnabled true
8584
applicationIdSuffix ".debug"
85+
enableUnitTestCoverage true
86+
enableAndroidTestCoverage true
8687
}
8788

8889
release {
@@ -94,13 +95,14 @@ android {
9495
proguardFiles getDefaultProguardFile(
9596
'proguard-android-optimize.txt'),
9697
'proguard-project.txt'
97-
testCoverageEnabled false
9898
// Use debug signing for now
9999
//signingConfig debug.signingConfig
100100

101101
ndk {
102102
//abiFilters "arm64-v8a", "armeabi-v7a", "armeabi", "mips"
103103
}
104+
enableUnitTestCoverage false
105+
enableAndroidTestCoverage false
104106
}
105107
}
106108

@@ -283,12 +285,14 @@ dependencies {
283285
implementation "androidx.appcompat:appcompat:1.6.1"
284286
implementation "androidx.recyclerview:recyclerview:1.3.2"
285287
implementation "androidx.core:core-ktx:1.12.0"
288+
implementation 'androidx.core:core-splashscreen:1.0.1'
286289
implementation "androidx.constraintlayout:constraintlayout:2.1.4"
287290
implementation "androidx.fragment:fragment-ktx:1.6.2"
288291
implementation "androidx.drawerlayout:drawerlayout:1.2.0"
289292
implementation 'androidx.preference:preference-ktx:1.2.1'
293+
// Webkit: https://developer.android.com/jetpack/androidx/releases/webkit
290294
implementation 'androidx.webkit:webkit:1.10.0'
291-
implementation 'androidx.core:core-splashscreen:1.0.1'
295+
292296
//def lifecycle_version = "2.4.0"
293297
//implementation "androidx.lifecycle:lifecycle-viewmodel:$lifecycle_version"
294298
//implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:$lifecycle_version"

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ buildscript {
1010
}
1111
}
1212
dependencies {
13-
classpath 'com.android.tools.build:gradle:8.3.1'
13+
classpath 'com.android.tools.build:gradle:8.5.0'
1414
//classpath 'com.getkeepsafe.dexcount:dexcount-gradle-plugin:2.0.0'
1515
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
1616
classpath 'com.github.ben-manes:gradle-versions-plugin:0.38.0'
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)