Skip to content

Commit

Permalink
⚡️ clean up dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
theapache64 committed Apr 2, 2024
1 parent 2f8f8fc commit 6fb0567
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 15 deletions.
1 change: 0 additions & 1 deletion composeApp/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ kotlin {
}

androidMain.dependencies {
implementation(libs.androidx.appcompat)
implementation(libs.androidx.activityCompose)
implementation(libs.compose.uitooling)
}
Expand Down
3 changes: 1 addition & 2 deletions composeApp/src/androidMain/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@

<application
android:icon="@android:drawable/ic_menu_compass"
android:label="Rebugger"
android:theme="@style/Theme.AppCompat.Light">
android:label="Rebugger">
<activity
android:name=".MainActivity"
android:configChanges="orientation|screenSize|screenLayout|keyboardHidden"
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ SONATYPE_AUTOMATIC_RELEASE=true

GROUP=io.github.theapache64
POM_ARTIFACT_ID=rebugger
VERSION_NAME=1.0.0-rc02
VERSION_NAME=1.0.0-rc03

POM_NAME=Rebugger
POM_DESCRIPTION=A simple Compose library to print the reason for recomposition in your Logcat window
Expand Down
8 changes: 3 additions & 5 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,13 @@

kotlin = "1.9.20"
agp = "8.1.2"
compose = "1.5.10"
androidx-appcompat = "1.6.1"
androidx-activityCompose = "1.7.2"
compose-uitooling = "1.5.1"
compose = "1.6.1"
androidx-activityCompose = "1.8.2"
compose-uitooling = "1.6.4"
publish = "0.25.3"

[libraries]

androidx-appcompat = { module = "androidx.appcompat:appcompat", version.ref = "androidx-appcompat" }
androidx-activityCompose = { module = "androidx.activity:activity-compose", version.ref = "androidx-activityCompose" }
compose-uitooling = { module = "androidx.compose.ui:ui-tooling", version.ref = "compose-uitooling" }

Expand Down
7 changes: 1 addition & 6 deletions rebugger/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -43,20 +43,15 @@ kotlin {
}
commonMain.dependencies {
implementation(compose.runtime)
implementation(compose.material3)
implementation(compose.materialIconsExtended)
@OptIn(org.jetbrains.compose.ExperimentalComposeLibrary::class)
implementation(compose.components.resources)
}

commonTest.dependencies {
implementation(kotlin("test"))
}

androidMain.dependencies {
implementation(libs.androidx.appcompat)
implementation(libs.androidx.activityCompose)
implementation(libs.compose.uitooling)

}

jvmMain.dependencies {
Expand Down

0 comments on commit 6fb0567

Please sign in to comment.