Skip to content

Commit 21b226d

Browse files
committed
chore: update agp version to 8.0
1 parent 2994587 commit 21b226d

File tree

6 files changed

+21
-18
lines changed

6 files changed

+21
-18
lines changed

app/build.gradle.kts

Lines changed: 4 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -31,27 +31,20 @@ androidApplication {
3131

3232
dependencies {
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
}

config/jacoco/modules.kts

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff 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

config/jacoco/project.kts

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff 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

gradle.properties

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff 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
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#Mon Jan 16 11:05:00 CST 2023
22
distributionBase=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
44
distributionPath=wrapper/dists
55
zipStorePath=wrapper/dists
66
zipStoreBase=GRADLE_USER_HOME

settings.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)