Skip to content

Commit

Permalink
Fix deployment - phase 2
Browse files Browse the repository at this point in the history
  • Loading branch information
cp-megh-l committed Jan 3, 2024
1 parent c5d72ec commit e3d2a37
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
9 changes: 4 additions & 5 deletions bottombar/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ apply{
}

android {
namespace = "com.example.bottombar"
namespace = "com.canopas.lib.bottombar"
compileSdk = 34

defaultConfig {
Expand All @@ -36,11 +36,11 @@ android {
}
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
kotlinOptions {
jvmTarget = "11"
jvmTarget = "17"
}
buildFeatures {
compose = true
Expand All @@ -56,7 +56,6 @@ android {

publishing {
singleVariant("release") {
withJavadocJar()
withSourcesJar()
}
}
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ plugins {
id("com.android.application") version "8.1.1" apply false
id("org.jetbrains.kotlin.android") version "1.9.10" apply false
id("com.android.library") version "8.1.1" apply false
id ("io.github.gradle-nexus.publish-plugin") version "1.1.0"
id ("io.github.gradle-nexus.publish-plugin") version "1.3.0"
}

apply{
Expand Down

0 comments on commit e3d2a37

Please sign in to comment.