mirror of
https://github.com/ruffle-rs/ruffle-android.git
synced 2024-11-23 13:49:40 +00:00
4926861d12
Bumps [org.jetbrains.kotlin.android](https://github.com/JetBrains/kotlin) from 1.9.24 to 2.0.0. - [Release notes](https://github.com/JetBrains/kotlin/releases) - [Changelog](https://github.com/JetBrains/kotlin/blob/v2.0.0/ChangeLog.md) - [Commits](https://github.com/JetBrains/kotlin/compare/v1.9.24...v2.0.0) --- updated-dependencies: - dependency-name: org.jetbrains.kotlin.android dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Manually added changes according to: https://android-developers.googleblog.com/2024/04/jetpack-compose-compiler-moving-to-kotlin-repository.html
17 lines
479 B
Plaintext
17 lines
479 B
Plaintext
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
plugins {
|
|
alias(libs.plugins.ktlint)
|
|
alias(libs.plugins.androidApplication) apply false
|
|
alias(libs.plugins.jetbrainsKotlinAndroid) apply false
|
|
alias(libs.plugins.composeCompiler) apply false
|
|
alias(libs.plugins.cargoNdkAndroid) apply false
|
|
}
|
|
|
|
allprojects {
|
|
apply(plugin = rootProject.libs.plugins.ktlint.get().pluginId)
|
|
}
|
|
|
|
ktlint {
|
|
android.set(true)
|
|
}
|