Skip to content

Commit

Permalink
[Oztechan/CCC#2004] Remove deprecated targetSdk
Browse files Browse the repository at this point in the history
  • Loading branch information
mustafaozhan committed Feb 13, 2023
1 parent 525ccb6 commit 2742c87
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/ProjectSettings.kt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import java.io.ByteArrayOutputStream

object ProjectSettings {
const val COMPILE_SDK_VERSION = 31
const val MIN_SDK_VERSION = 21
const val MIN_SDK_VERSION = 16
const val TARGET_SDK_VERSION = 31

private const val MAYOR_VERSION = 2
Expand Down
5 changes: 4 additions & 1 deletion logmob/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -77,5 +77,8 @@ kotlin {

android {
namespace = "com.github.submob.logmob"
compileSdk = ProjectSettings.COMPILE_SDK_VERSION
ProjectSettings.apply {
compileSdk = COMPILE_SDK_VERSION
defaultConfig.minSdk = MIN_SDK_VERSION
}
}

0 comments on commit 2742c87

Please sign in to comment.