Skip to content

Commit

Permalink
Merge pull request #219 from nohjunh/remove-defaultConfig-line
Browse files Browse the repository at this point in the history
Remove redundant default config line and unused imports
  • Loading branch information
skydoves authored Oct 17, 2023
2 parents 5558a0b + daa980a commit 029a0c5
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ class AndroidApplicationConventionPlugin : Plugin<Project> {

extensions.configure<BaseAppModuleExtension> {
configureKotlinAndroid(this)
defaultConfig.targetSdk = 32
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,7 @@ import com.android.build.gradle.LibraryExtension
import com.skydoves.chatgpt.configureKotlinAndroid
import org.gradle.api.Plugin
import org.gradle.api.Project
import org.gradle.api.artifacts.VersionCatalogsExtension
import org.gradle.kotlin.dsl.configure
import org.gradle.kotlin.dsl.dependencies
import org.gradle.kotlin.dsl.getByType

class AndroidLibraryConventionPlugin : Plugin<Project> {
override fun apply(target: Project) {
Expand All @@ -17,7 +14,6 @@ class AndroidLibraryConventionPlugin : Plugin<Project> {

extensions.configure<LibraryExtension> {
configureKotlinAndroid(this)
defaultConfig.targetSdk = 32
}
}
}
Expand Down

0 comments on commit 029a0c5

Please sign in to comment.