diff --git a/.idea/deploymentTargetDropDown.xml b/.idea/deploymentTargetDropDown.xml new file mode 100644 index 0000000..99b8058 --- /dev/null +++ b/.idea/deploymentTargetDropDown.xml @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 50d24e7..0a1db88 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -27,7 +27,6 @@ android { getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro" ) - signingConfig = signingConfigs.getByName("debug") } } compileOptions { diff --git a/bottombar/build.gradle.kts b/bottombar/build.gradle.kts index dc91e26..e944ad7 100644 --- a/bottombar/build.gradle.kts +++ b/bottombar/build.gradle.kts @@ -48,11 +48,17 @@ android { composeOptions { kotlinCompilerExtensionVersion = "1.5.3" } - packagingOptions { + packaging { resources { excludes += "/META-INF/{AL2.0,LGPL2.1}" } } + + publishing { + singleVariant("release") { + withJavadocJar() + } + } } dependencies { diff --git a/gradle.properties b/gradle.properties index 3c5031e..2cbd6d1 100644 --- a/gradle.properties +++ b/gradle.properties @@ -20,4 +20,4 @@ kotlin.code.style=official # Enables namespacing of each library's R class so that its R class includes only the # resources declared in the library itself and none from the library's dependencies, # thereby reducing the size of the R class for that library -android.nonTransitiveRClass=true \ No newline at end of file +android.nonTransitiveRClass=true diff --git a/scripts/publish-module.gradle b/scripts/publish-module.gradle index 4a59f60..2d132d7 100644 --- a/scripts/publish-module.gradle +++ b/scripts/publish-module.gradle @@ -1,7 +1,7 @@ apply plugin: 'maven-publish' apply plugin: 'signing' -task androidSourcesJar(type: Jar) { +tasks.register('androidSourcesJar', Jar) { archiveClassifier.set('sources') if (project.plugins.findPlugin("com.android.library")) { from android.sourceSets.main.java.srcDirs @@ -56,9 +56,9 @@ afterEvaluate { } scm { - connection = 'scm:git:github.com/canopas/Intro-showcase-view.git' - developerConnection = 'scm:git:ssh://github.com/canopas/Intro-showcase-view.git' - url = 'https://github.com/canopas/Intro-showcase-view.git' + connection = 'scm:git:github.com/canopas/AnimatedBottomBarCompose.git' + developerConnection = 'scm:git:ssh://github.com/canopas/AnimatedBottomBarCompose.git' + url = 'https://github.com/canopas/AnimatedBottomBarCompose.git' } } }