fix(build): raise target SDK to 34

This commit is contained in:
Harsh Shandilya 2023-06-22 11:27:42 +05:30
parent 21a7baa309
commit 9c2c238e1e
No known key found for this signature in database

View file

@ -27,9 +27,9 @@ import org.gradle.kotlin.dsl.getByType
class AndroidCommonPlugin : Plugin<Project> {
private companion object {
const val COMPILE_SDK = 33
const val COMPILE_SDK = 34
const val MIN_SDK = 26
const val TARGET_SDK = 33
const val TARGET_SDK = 34
}
override fun apply(project: Project) {