Skip to content

Commit

Permalink
release: Disable minifyEnabled
Browse files Browse the repository at this point in the history
  • Loading branch information
erenalpaslan committed Sep 25, 2023
1 parent 2db64e0 commit 22341d9
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions removebg/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ android {

buildTypes {
release {
isMinifyEnabled = true
isMinifyEnabled = false
proguardFiles(
getDefaultProguardFile("proguard-android-optimize.txt"),
"proguard-rules.pro"
Expand Down Expand Up @@ -53,16 +53,17 @@ dependencies {
androidTestImplementation(libs.espresso.core)
}


publishing {
publications {
register<MavenPublication>("release") {
groupId = "dev.eren"
artifactId = "removebg"
version = "1.0.2"

afterEvaluate {
from(components["release"])
}

groupId = "dev.eren"
artifactId = "removebg"
version = "1.0.2"
}
}
}

0 comments on commit 22341d9

Please sign in to comment.