feat(build): target API 34

This commit is contained in:
Harsh Shandilya 2023-07-12 15:33:59 +05:30
parent ae9f56e965
commit bfd51efca4
No known key found for this signature in database
3 changed files with 5 additions and 3 deletions

View file

@ -16,10 +16,10 @@ import org.gradle.kotlin.dsl.withType
object AndroidCommon {
fun configure(project: Project) {
project.extensions.configure<TestedExtension> {
setCompileSdkVersion(33)
compileSdkVersion(34)
defaultConfig {
minSdk = 26
targetSdk = 33
targetSdk = 34
}
packagingOptions {