Skip to content

Commit

Permalink
Merge pull request #6 from canopas/minor-change
Browse files Browse the repository at this point in the history
Minor changes
  • Loading branch information
cp-megh-l authored Oct 25, 2023
2 parents 9bfcdbf + d9fc863 commit 749b757
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 7 deletions.
17 changes: 17 additions & 0 deletions .idea/deploymentTargetDropDown.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ android {
getDefaultProguardFile("proguard-android-optimize.txt"),
"proguard-rules.pro"
)
signingConfig = signingConfigs.getByName("debug")
}
}
compileOptions {
Expand Down
8 changes: 7 additions & 1 deletion bottombar/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -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
android.nonTransitiveRClass=true
8 changes: 4 additions & 4 deletions scripts/publish-module.gradle
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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'
}
}
}
Expand Down

0 comments on commit 749b757

Please sign in to comment.