-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #44 from Rafael2616/multiplatform-support
Add support for kotlin multiplatform
- Loading branch information
Showing
43 changed files
with
3,064 additions
and
194 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,7 @@ | |
# Gradle files | ||
.gradle/ | ||
build/ | ||
.kotlin | ||
|
||
# Local configuration file (sdk path, etc) | ||
local.properties | ||
|
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
2 changes: 1 addition & 1 deletion
2
app/src/main/java/my/nanihadesuka/lazycolumnscrollbar/ui/theme/Shape.kt
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
4 changes: 2 additions & 2 deletions
4
app/src/main/java/my/nanihadesuka/lazycolumnscrollbar/ui/theme/Type.kt
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 |
---|---|---|
@@ -1,37 +1,25 @@ | ||
[versions] | ||
kotlin = "1.9.23" | ||
plugin-agp = "8.1.4" | ||
kotlin = "2.0.20" | ||
plugin-agp = "8.6.0" | ||
|
||
compose-bom = "2024.04.00" | ||
compose-compiler = "1.5.11" | ||
|
||
activityCompose = "1.9.0" | ||
appcompat = "1.6.1" | ||
coreKtx = "1.13.0" | ||
activityCompose = "1.9.2" | ||
junit = "4.13.2" | ||
lifecycleRuntimeKtx = "2.7.0" | ||
material = "1.11.0" | ||
material = "1.12.0" | ||
robolectric = "4.11.1" | ||
jetbrains-compose = "1.7.0-beta02" | ||
compose = "1.7.1" | ||
|
||
[libraries] | ||
androidx-appcompat = { module = "androidx.appcompat:appcompat", version.ref = "appcompat" } | ||
androidx-core-ktx = { module = "androidx.core:core-ktx", version.ref = "coreKtx" } | ||
android-material = { module = "com.google.android.material:material", version.ref = "material" } | ||
androidx-lifecycle-runtime-ktx = { module = "androidx.lifecycle:lifecycle-runtime-ktx", version.ref = "lifecycleRuntimeKtx" } | ||
|
||
androidx-compose-bom = { module = "androidx.compose:compose-bom", version.ref = "compose-bom" } | ||
androidx-compose-material = { module = "androidx.compose.material:material" } | ||
androidx-compose-ui-ui = { module = "androidx.compose.ui:ui" } | ||
androidx-compose-ui-tooling-preview = { module = "androidx.compose.ui:ui-tooling-preview" } | ||
androidx-compose-ui-test-junit4 = { module = "androidx.compose.ui:ui-test-junit4" } | ||
androidx-compose-ui-test-manifest = { module = "androidx.compose.ui:ui-test-manifest" } | ||
androidx-compose-activity = { module = "androidx.activity:activity-compose", version.ref = "activityCompose" } | ||
androidx-compose-ui-tooling = { module = "androidx.compose.ui:ui-tooling" } | ||
androidx-compose-ui-test-manifest = { module = "androidx.compose.ui:ui-test-manifest", version.ref = "compose" } | ||
|
||
junit = { module = "junit:junit", version.ref = "junit" } | ||
robolectric = { module = "org.robolectric:robolectric", version.ref = "robolectric" } | ||
|
||
[plugins] | ||
android-application = { id = "com.android.application", version.ref = "plugin-agp" } | ||
android-library = { id = "com.android.library", version.ref = "plugin-agp" } | ||
kotlin-android = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin" } | ||
kotlin-multiplatform = { id = "org.jetbrains.kotlin.multiplatform", version.ref = "kotlin" } | ||
jetbrains-compose-compiler = { id = "org.jetbrains.kotlin.plugin.compose", version.ref = "kotlin" } | ||
jetbrains-compose = { id = "org.jetbrains.compose", version.ref = "jetbrains-compose" } |
Oops, something went wrong.