Skip to content

Commit

Permalink
Bump Compile SDK 29 -> 33
Browse files Browse the repository at this point in the history
  • Loading branch information
ArnasSmicius committed Aug 22, 2023
1 parent a89c620 commit e23619b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/Dependencies.kt
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ object Versions {
const val LIFECYCLE = "2.2.0"
const val VIEW_BINDING_DELEGATE = "1.5.9"

const val COMPILE_SDK_VERSION = 29
const val COMPILE_SDK_VERSION = 33
const val MIN_SDK_VERSION = 21

private const val MAJOR = 0
Expand Down
4 changes: 2 additions & 2 deletions example/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
}

android {
compileSdkVersion(Versions.COMPILE_SDK_VERSION)
compileSdk = Versions.COMPILE_SDK_VERSION

compileOptions {
sourceCompatibility = JavaVersion.VERSION_1_8
Expand All @@ -16,7 +16,7 @@ android {

defaultConfig {
applicationId = "com.vinted.coper.example"
minSdkVersion(Versions.MIN_SDK_VERSION)
minSdk = Versions.MIN_SDK_VERSION

testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
}
Expand Down
4 changes: 2 additions & 2 deletions library/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ plugins {
group = "com.github.vinted"

android {
compileSdkVersion(Versions.COMPILE_SDK_VERSION)
compileSdk = Versions.COMPILE_SDK_VERSION

defaultConfig {
minSdkVersion(Versions.MIN_SDK_VERSION)
minSdk = Versions.MIN_SDK_VERSION
}

buildTypes {
Expand Down

0 comments on commit e23619b

Please sign in to comment.