File tree Expand file tree Collapse file tree 6 files changed +21
-18
lines changed Expand file tree Collapse file tree 6 files changed +21
-18
lines changed Original file line number Diff line number Diff line change @@ -31,27 +31,20 @@ androidApplication {
3131
3232dependencies {
3333 implementation(project(" :feature-feature_name" ))
34-
3534 implementation(libs.bundles.kotlin)
3635 implementation(libs.bundles.android)
36+ implementation(libs.bundles.coil)
3737 implementation(libs.bundles.compose)
38+ debugImplementation(libs.bundles.compose.ui.tool)
3839
3940 implementation(libs.hilt.android)
4041 kapt(libs.hilt.compiler)
4142
4243 implementation(libs.router)
4344 kapt(libs.router.compiler)
4445
45- implementation(libs.bundles.coil)
46-
47- testImplementation(libs.junit4)
48-
49- androidTestImplementation(libs.androidx.junit.ktx)
50- androidTestImplementation(libs.espresso.core)
51- androidTestImplementation(libs.androidx.test.core)
52- androidTestImplementation(libs.androidx.test.runner)
53- androidTestImplementation(libs.androidx.test.rules)
54- androidTestImplementation(libs.truth)
46+ testImplementation(libs.bundles.unit.test)
47+ androidTestImplementation(libs.bundles.android.test)
5548
5649 detektPlugins(libs.detekt.formatting)
5750}
Original file line number Diff line number Diff line change @@ -12,8 +12,12 @@ project.afterEvaluate {
1212 description = " Generate Jacoco coverage reports for the ${variantName} build."
1313
1414 reports {
15- html.enabled(true )
16- xml.enabled(true )
15+ xml {
16+ enabled true
17+ }
18+ html {
19+ enabled true
20+ }
1721 }
1822
1923 def excludes = project.ext.jacocoFileFilter
Original file line number Diff line number Diff line change @@ -9,8 +9,12 @@ project.afterEvaluate {
99 description = " Generate overall Jacoco coverage report for the $variant build."
1010
1111 reports {
12- html.enabled(true )
13- xml.enabled(true )
12+ xml {
13+ enabled true
14+ }
15+ html {
16+ enabled true
17+ }
1418 }
1519
1620 def excludes = project.ext.jacocoFileFilter
Original file line number Diff line number Diff line change @@ -20,4 +20,6 @@ kotlin.code.style=official
2020# Enables namespacing of each library's R class so that its R class includes only the
2121# resources declared in the library itself and none from the library's dependencies,
2222# thereby reducing the size of the R class for that library
23- android.nonTransitiveRClass =true
23+ android.nonTransitiveRClass =true
24+ android.defaults.buildfeatures.buildconfig =true
25+ android.nonFinalResIds =false
Original file line number Diff line number Diff line change 11# Mon Jan 16 11:05:00 CST 2023
22distributionBase =GRADLE_USER_HOME
3- distributionUrl =https\://services.gradle.org/distributions/gradle-7.6.1 -bin.zip
3+ distributionUrl =https\://services.gradle.org/distributions/gradle-8.0 -bin.zip
44distributionPath =wrapper/dists
55zipStorePath =wrapper/dists
66zipStoreBase =GRADLE_USER_HOME
Original file line number Diff line number Diff line change @@ -84,7 +84,7 @@ dependencyResolutionManagement {
8484
8585 versionCatalogs {
8686 create(" libs" ) {
87- from(" io.github.ssseasonnn:VersionCatalog:0.0.3 " )
87+ from(" io.github.ssseasonnn:VersionCatalog:0.0.4 " )
8888 }
8989 }
9090}
You can’t perform that action at this time.
0 commit comments