Skip to content

Commit 9eb1337

Browse files
committed
Bump AGP, Kotlin, and material deisgn components
1 parent 246170c commit 9eb1337

File tree

6 files changed

+18
-20
lines changed

6 files changed

+18
-20
lines changed

app/build.gradle.kts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616

1717
import com.skydoves.tranformationlayout.Configuration
1818

19-
@Suppress("DSL_SCOPE_VIOLATION")
2019
plugins {
2120
id(libs.plugins.android.application.get().pluginId)
2221
id(libs.plugins.kotlin.android.get().pluginId)

baselineprofile/build.gradle.kts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import com.skydoves.tranformationlayout.Configuration
22
import com.android.build.api.dsl.ManagedVirtualDevice
33

4-
@Suppress("DSL_SCOPE_VIOLATION") // TODO: Remove once KTIJ-19369 is fixed
54
plugins {
65
alias(libs.plugins.android.test)
76
alias(libs.plugins.kotlin.android)

build.gradle.kts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
@Suppress("DSL_SCOPE_VIOLATION")
1615
plugins {
1716
alias(libs.plugins.android.application) apply false
1817
alias(libs.plugins.android.library) apply false

gradle/libs.versions.toml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
[versions]
2-
agp = "8.7.3"
2+
agp = "8.12.0"
33
dokka = "2.0.0"
4-
nexusPlugin = "0.30.0"
5-
kotlin = "2.1.0"
6-
kotlinBinaryCompatibility = "0.17.0"
4+
nexusPlugin = "0.34.0"
5+
kotlin = "2.2.10"
6+
kotlinBinaryCompatibility = "0.18.1"
77
jvmTarget = "11"
8-
androidxMaterial = "1.13.0-alpha09"
9-
constraintLayout = "2.2.0"
8+
androidxMaterial = "1.13.0-rc01"
9+
constraintLayout = "2.2.1"
1010
glide = "4.16.0"
1111
spotless = "6.21.0"
12-
junit = "1.2.0"
13-
espresso-core = "3.5.1"
12+
junit = "1.3.0"
13+
espresso-core = "3.7.0"
1414
uiautomator = "2.3.0"
15-
benchmark-macro-junit4 = "1.2.4"
16-
androidx-baselineprofile = "1.3.3"
15+
benchmark-macro-junit4 = "1.4.0"
16+
androidx-baselineprofile = "1.4.0"
1717
profileinstaller = "1.4.1"
18-
androidxMacroBenchmark = "1.3.3"
19-
androidxTest = "1.6.0"
18+
androidxMacroBenchmark = "1.4.0"
19+
androidxTest = "1.7.0"
2020
baselineProfiles = "1.4.1"
2121
uiAutomator = "2.3.0"
2222

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#Fri Jan 03 23:23:48 KST 2025
22
distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
4-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.13-bin.zip
55
networkTimeout=10000
66
validateDistributionUrl=true
77
zipStoreBase=GRADLE_USER_HOME

transformationlayout/build.gradle.kts

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616

1717
import com.skydoves.tranformationlayout.Configuration
1818

19-
@Suppress("DSL_SCOPE_VIOLATION")
2019
plugins {
2120
id(libs.plugins.android.library.get().pluginId)
2221
id(libs.plugins.kotlin.android.get().pluginId)
@@ -76,9 +75,11 @@ baselineProfile {
7675
}
7776

7877
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile> {
79-
kotlinOptions.freeCompilerArgs += listOf(
80-
"-Xexplicit-api=strict"
81-
)
78+
compilerOptions {
79+
freeCompilerArgs.addAll(
80+
"-Xexplicit-api=strict"
81+
)
82+
}
8283
}
8384

8485
dependencies {

0 commit comments

Comments
 (0)