-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Kotlin の依存関係定義を Version Catalog へ移行 * Version Catalog で各 plugin を扱うために pluginManagement の設定を追加 * Android Gradle Plugin の依存関係定義を Version Catalog へ移行 * SDK Version の設定を Version Catalog へ移行 * Jetpack Compose の依存関係定義を Version Catalog へ移行
- Loading branch information
Showing
7 changed files
with
59 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
[versions] | ||
android-compileSdk = "33" | ||
android-targetSdk = "30" | ||
android-minSdk = "23" | ||
android-gradle = "7.4.2" | ||
composeCompiler = "1.3.2" | ||
kotlin = "1.7.20" | ||
|
||
[libraries] | ||
androidx-compose-compiler = { module = "androidx.compose.compiler:compiler", version.ref = "composeCompiler" } | ||
androidx-compose-bom = { module = "androidx.compose:compose-bom", version = "2023.01.00" } | ||
androidx-compose-ui = { module = "androidx.compose.ui:ui" } | ||
androidx-compose-ui-tooling = { module = "androidx.compose.ui:ui-tooling" } | ||
androidx-compose-material = { module = "androidx.compose.material:material" } | ||
|
||
[plugins] | ||
android-application = { id = "com.android.application", version.ref = "android-gradle" } | ||
android-library = { id = "com.android.library", version.ref = "android-gradle" } | ||
kotlin = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin" } | ||
kotlin-parcelize = { id = "org.jetbrains.kotlin.plugin.parcelize", version.ref = "kotlin" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters