Skip to content

Commit

Permalink
Update version name
Browse files Browse the repository at this point in the history
  • Loading branch information
hieuwu committed Oct 17, 2024
1 parent cb7e114 commit a6f005b
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 15 deletions.
8 changes: 4 additions & 4 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -105,12 +105,12 @@ dependencies {
implementation(project(":fiaticons"))
implementation(project(":cryptoicons"))

implementation(libs.about)
implementation(libs.ark.about)
implementation(libs.androidx.ui)

implementation(libs.navigation.compose)
implementation(libs.material3)
implementation(libs.ui.tooling.preview)
implementation(libs.androidx.ui.tooling.preview)
implementation(libs.androidx.lifecycle.runtime.ktx)
implementation(libs.androidx.activity.compose)
implementation(libs.constraintlayout.compose)
Expand Down Expand Up @@ -138,8 +138,8 @@ dependencies {

implementation(libs.qrgenerator)

implementation(libs.animations.core)
ksp(libs.ksp)
implementation(libs.compose.destinations.animations)
ksp(libs.compose.destinations.compiler)

implementation(libs.retrofit)
implementation(libs.converter.gson)
Expand Down
25 changes: 14 additions & 11 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[versions]
about = "0.1.1"
arkAbout = "0.1.1"
activityCompose = "1.9.2"
animationsCore = "1.9.62"
composeDestinationsVersion = "1.9.62"
arrowFxCoroutines = "1.2.1"
arrowCore = "1.2.1"
constraintlayoutCompose = "1.0.1"
Expand All @@ -24,11 +24,11 @@ retrofit = "2.11.0"
roomRuntime = "2.6.1"
tagcloud = "1.1.0"
timber = "5.0.1"
uiToolingPreview = "1.6.8"
composeUi = "1.6.8"
workRuntimeKtx = "2.8.1"

[libraries]
about = { module = "dev.arkbuilders.components:about", version.ref = "about" }
ark-about = { module = "dev.arkbuilders.components:about", version.ref = "arkAbout" }
androidx-activity-compose = { module = "androidx.activity:activity-compose", version.ref = "activityCompose" }
androidx-datastore-preferences = { module = "androidx.datastore:datastore-preferences", version.ref = "datastorePreferences" }
androidx-espresso-core = { module = "androidx.test.espresso:espresso-core", version.ref = "espressoCore" }
Expand All @@ -38,12 +38,17 @@ androidx-lifecycle-runtime-ktx = { module = "androidx.lifecycle:lifecycle-runtim
androidx-room-compiler = { module = "androidx.room:room-compiler", version.ref = "roomRuntime" }
androidx-room-ktx = { module = "androidx.room:room-ktx", version.ref = "roomRuntime" }
androidx-room-runtime = { module = "androidx.room:room-runtime", version.ref = "roomRuntime" }
androidx-ui = { module = "androidx.compose.ui:ui", version.ref = "uiToolingPreview" }
androidx-ui-test-junit4 = { module = "androidx.compose.ui:ui-test-junit4", version.ref = "uiToolingPreview" }
androidx-ui-test-manifest = { module = "androidx.compose.ui:ui-test-manifest", version.ref = "uiToolingPreview" }
androidx-ui-tooling = { module = "androidx.compose.ui:ui-tooling", version.ref = "uiToolingPreview" }

androidx-ui = { module = "androidx.compose.ui:ui", version.ref = "composeUi" }
androidx-ui-test-junit4 = { module = "androidx.compose.ui:ui-test-junit4", version.ref = "composeUi" }
androidx-ui-test-manifest = { module = "androidx.compose.ui:ui-test-manifest", version.ref = "composeUi" }
androidx-ui-tooling = { module = "androidx.compose.ui:ui-tooling", version.ref = "composeUi" }
androidx-ui-tooling-preview = { module = "androidx.compose.ui:ui-tooling-preview", version.ref = "composeUi" }

androidx-work-runtime-ktx = { module = "androidx.work:work-runtime-ktx", version.ref = "workRuntimeKtx" }
animations-core = { module = "io.github.raamcosta.compose-destinations:animations-core", version.ref = "animationsCore" }
compose-destinations-animations = { module = "io.github.raamcosta.compose-destinations:animations-core", version.ref = "composeDestinationsVersion" }
compose-destinations-compiler = { module = "io.github.raamcosta.compose-destinations:ksp", version.ref = "composeDestinationsVersion" }

arrow-fx-coroutines = { module = "io.arrow-kt:arrow-fx-coroutines", version.ref = "arrowFxCoroutines" }
arrow-core = { module = "io.arrow-kt:arrow-core", version.ref = "arrowCore" }
constraintlayout-compose = { module = "androidx.constraintlayout:constraintlayout-compose", version.ref = "constraintlayoutCompose" }
Expand All @@ -56,7 +61,6 @@ firebase-analytics = { module = "com.google.firebase:firebase-analytics-ktx", ve
firebase-crashlytics = { module = "com.google.firebase:firebase-crashlytics-ktx", version = "" }

junit = { module = "junit:junit", version.ref = "junit" }
ksp = { module = "io.github.raamcosta.compose-destinations:ksp", version.ref = "animationsCore" }
logging-interceptor = { module = "com.squareup.okhttp3:logging-interceptor", version.ref = "loggingInterceptor" }
material3 = { module = "androidx.compose.material3:material3", version.ref = "material3" }
navigation-compose = { module = "androidx.navigation:navigation-compose", version.ref = "navigationComposeVersion" }
Expand All @@ -66,4 +70,3 @@ qrgenerator = { module = "com.github.androidmads:QRGenerator", version.ref = "qr
retrofit = { module = "com.squareup.retrofit2:retrofit", version.ref = "retrofit" }
tagcloud = { module = "io.github.oleksandrbalan:tagcloud", version.ref = "tagcloud" }
timber = { module = "com.jakewharton.timber:timber", version.ref = "timber" }
ui-tooling-preview = { module = "androidx.compose.ui:ui-tooling-preview", version.ref = "uiToolingPreview" }

0 comments on commit a6f005b

Please sign in to comment.