@@ -81,8 +81,9 @@ android {
81
81
proguardFiles getDefaultProguardFile(
82
82
' proguard-android-optimize.txt' ),
83
83
' proguard-project.txt'
84
- testCoverageEnabled true
85
84
applicationIdSuffix " .debug"
85
+ enableUnitTestCoverage true
86
+ enableAndroidTestCoverage true
86
87
}
87
88
88
89
release {
@@ -94,13 +95,14 @@ android {
94
95
proguardFiles getDefaultProguardFile(
95
96
' proguard-android-optimize.txt' ),
96
97
' proguard-project.txt'
97
- testCoverageEnabled false
98
98
// Use debug signing for now
99
99
// signingConfig debug.signingConfig
100
100
101
101
ndk {
102
102
// abiFilters "arm64-v8a", "armeabi-v7a", "armeabi", "mips"
103
103
}
104
+ enableUnitTestCoverage false
105
+ enableAndroidTestCoverage false
104
106
}
105
107
}
106
108
@@ -283,12 +285,14 @@ dependencies {
283
285
implementation " androidx.appcompat:appcompat:1.6.1"
284
286
implementation " androidx.recyclerview:recyclerview:1.3.2"
285
287
implementation " androidx.core:core-ktx:1.12.0"
288
+ implementation ' androidx.core:core-splashscreen:1.0.1'
286
289
implementation " androidx.constraintlayout:constraintlayout:2.1.4"
287
290
implementation " androidx.fragment:fragment-ktx:1.6.2"
288
291
implementation " androidx.drawerlayout:drawerlayout:1.2.0"
289
292
implementation ' androidx.preference:preference-ktx:1.2.1'
293
+ // Webkit: https://developer.android.com/jetpack/androidx/releases/webkit
290
294
implementation ' androidx.webkit:webkit:1.10.0'
291
- implementation ' androidx.core:core-splashscreen:1.0.1 '
295
+
292
296
// def lifecycle_version = "2.4.0"
293
297
// implementation "androidx.lifecycle:lifecycle-viewmodel:$lifecycle_version"
294
298
// implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:$lifecycle_version"
0 commit comments