Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Minor changes #6

Merged
merged 2 commits into from
Oct 25, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading