mirror of
https://github.com/msfjarvis/compose-lobsters
synced 2025-08-14 00:07:05 +05:30
build-logic: uprev target SDK to 32
This commit is contained in:
parent
d83e68ac18
commit
cbc6cdf84e
1 changed files with 4 additions and 4 deletions
|
@ -14,10 +14,10 @@ class AndroidCommonPlugin : Plugin<Project> {
|
|||
override fun apply(project: Project) {
|
||||
project.pluginManager.apply(AndroidCacheFixPlugin::class)
|
||||
project.extensions.findByType<TestedExtension>()?.run {
|
||||
setCompileSdkVersion(31)
|
||||
setCompileSdkVersion(32)
|
||||
defaultConfig {
|
||||
minSdk = 26
|
||||
targetSdk = 31
|
||||
targetSdk = 32
|
||||
}
|
||||
|
||||
sourceSets {
|
||||
|
@ -46,10 +46,10 @@ class AndroidCommonPlugin : Plugin<Project> {
|
|||
}
|
||||
}
|
||||
project.extensions.findByType<TestExtension>()?.run {
|
||||
compileSdk = 31
|
||||
compileSdk = 32
|
||||
defaultConfig {
|
||||
minSdk = 26
|
||||
targetSdk = 31
|
||||
targetSdk = 32
|
||||
}
|
||||
compileOptions {
|
||||
sourceCompatibility = JavaVersion.VERSION_11
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue