Bump android sdk to 31
This commit is contained in:
parent
b5f7fe94fd
commit
d4e5320a36
@ -137,6 +137,12 @@ object Deps {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
object AndroidPluginConfiguration {
|
||||||
|
val sdkVersion = 31
|
||||||
|
val targetVersion = 31
|
||||||
|
val minVersion = 24
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
object PluginsDeps {
|
object PluginsDeps {
|
||||||
val kotlinSerializationPlugin = "plugin.serialization"
|
val kotlinSerializationPlugin = "plugin.serialization"
|
||||||
|
@ -58,10 +58,10 @@ version = ReleaseInfo.bindingsVersion
|
|||||||
val ideaActive = isInIdea()
|
val ideaActive = isInIdea()
|
||||||
println("Idea active: $ideaActive")
|
println("Idea active: $ideaActive")
|
||||||
android {
|
android {
|
||||||
compileSdkVersion(29)
|
compileSdkVersion(AndroidPluginConfiguration.sdkVersion)
|
||||||
defaultConfig {
|
defaultConfig {
|
||||||
minSdkVersion(21)
|
minSdkVersion(AndroidPluginConfiguration.minVersion)
|
||||||
targetSdkVersion(29)
|
targetSdkVersion(AndroidPluginConfiguration.sdkVersion)
|
||||||
versionCode = 1
|
versionCode = 1
|
||||||
versionName = "1.0"
|
versionName = "1.0"
|
||||||
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user