diff --git a/bottombar/build.gradle.kts b/bottombar/build.gradle.kts index 9809659..f26ef0b 100644 --- a/bottombar/build.gradle.kts +++ b/bottombar/build.gradle.kts @@ -4,7 +4,7 @@ plugins { } ext { - set("PUBLISH_GROUP_ID", "io.github.canopas") + set("PUBLISH_GROUP_ID", "com.canopas.compose-animated-navigationbar") set("PUBLISH_ARTIFACT_ID", "bottombar") } @@ -65,7 +65,7 @@ android { dependencies { implementation("androidx.lifecycle:lifecycle-runtime-ktx:2.6.2") - implementation("androidx.activity:activity-compose:1.8.0") + implementation("androidx.activity:activity-compose:1.8.2") implementation(platform("androidx.compose:compose-bom:2023.09.00")) implementation("androidx.compose.ui:ui") implementation("androidx.compose.ui:ui-graphics") diff --git a/scripts/publish-module.gradle b/scripts/publish-module.gradle index 45af369..112216f 100644 --- a/scripts/publish-module.gradle +++ b/scripts/publish-module.gradle @@ -8,20 +8,16 @@ afterEvaluate { publishing { publications { release(MavenPublication) { - // The coordinates of the library, being set from variables that - // we'll set up later groupId PUBLISH_GROUP_ID artifactId PUBLISH_ARTIFACT_ID version rootProject.ext["publish_version"] - /// Two artifacts, the `aar` (or `jar`) and the sources if (project.plugins.findPlugin("com.android.library")) { from components.release } else { artifact("$buildDir/libs/${project.getName()}-${version}.jar") } - // Mostly self-explanatory metadata pom { name = PUBLISH_ARTIFACT_ID description = 'Bottom bar in Jetpack Compose with customizable styles & animations'