Skip to content

Commit

Permalink
Upgrade to Gradle 8.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Slion committed Jan 10, 2025
1 parent 487ff48 commit 1c6c7ae
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
10 changes: 7 additions & 3 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,9 @@ android {
proguardFiles getDefaultProguardFile(
'proguard-android-optimize.txt'),
'proguard-project.txt'
testCoverageEnabled true
applicationIdSuffix ".debug"
enableUnitTestCoverage true
enableAndroidTestCoverage true
}

release {
Expand All @@ -94,13 +95,14 @@ android {
proguardFiles getDefaultProguardFile(
'proguard-android-optimize.txt'),
'proguard-project.txt'
testCoverageEnabled false
// Use debug signing for now
//signingConfig debug.signingConfig

ndk {
//abiFilters "arm64-v8a", "armeabi-v7a", "armeabi", "mips"
}
enableUnitTestCoverage false
enableAndroidTestCoverage false
}
}

Expand Down Expand Up @@ -283,12 +285,14 @@ dependencies {
implementation "androidx.appcompat:appcompat:1.6.1"
implementation "androidx.recyclerview:recyclerview:1.3.2"
implementation "androidx.core:core-ktx:1.12.0"
implementation 'androidx.core:core-splashscreen:1.0.1'
implementation "androidx.constraintlayout:constraintlayout:2.1.4"
implementation "androidx.fragment:fragment-ktx:1.6.2"
implementation "androidx.drawerlayout:drawerlayout:1.2.0"
implementation 'androidx.preference:preference-ktx:1.2.1'
// Webkit: https://developer.android.com/jetpack/androidx/releases/webkit
implementation 'androidx.webkit:webkit:1.10.0'
implementation 'androidx.core:core-splashscreen:1.0.1'

//def lifecycle_version = "2.4.0"
//implementation "androidx.lifecycle:lifecycle-viewmodel:$lifecycle_version"
//implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:$lifecycle_version"
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ buildscript {
}
}
dependencies {
classpath 'com.android.tools.build:gradle:8.3.1'
classpath 'com.android.tools.build:gradle:8.5.0'
//classpath 'com.getkeepsafe.dexcount:dexcount-gradle-plugin:2.0.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
classpath 'com.github.ben-manes:gradle-versions-plugin:0.38.0'
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

0 comments on commit 1c6c7ae

Please sign in to comment.