build-logic: move target SDK to 33

This commit is contained in:
Harsh Shandilya 2022-08-10 22:47:29 +05:30
parent 82f9de1da9
commit 3622fc7b8a
No known key found for this signature in database
GPG key ID: 366D7BBAD1031E80

View file

@ -14,10 +14,10 @@ class AndroidCommonPlugin : Plugin<Project> {
override fun apply(project: Project) {
project.pluginManager.apply(AndroidCacheFixPlugin::class)
project.extensions.findByType<TestedExtension>()?.run {
setCompileSdkVersion(32)
setCompileSdkVersion(33)
defaultConfig {
minSdk = 26
targetSdk = 32
targetSdk = 33
}
sourceSets {