-
-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #109 from KakaoCup/gradle-cleanup
Some gradle-related cleanup
- Loading branch information
Showing
21 changed files
with
248 additions
and
407 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
12 changes: 12 additions & 0 deletions
12
buildSrc/src/main/kotlin/convention.android-base.gradle.kts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import com.android.build.gradle.BaseExtension | ||
import io.github.kakaocup.withVersionCatalog | ||
|
||
withVersionCatalog { libs -> | ||
configure<BaseExtension> { | ||
compileSdkVersion(libs.versions.compileSdk.get().toInt()) | ||
defaultConfig { | ||
minSdk = libs.versions.minSdk.get().toInt() | ||
multiDexEnabled = true | ||
} | ||
} | ||
} |
Oops, something went wrong.