mirror of
https://github.com/meshtastic/Meshtastic-Android.git
synced 2026-04-20 22:23:37 +00:00
Refactor: Improve GitHub release workflow and build configuration (#2251)
This commit is contained in:
parent
d507161bde
commit
496de47766
8 changed files with 284 additions and 112 deletions
|
|
@ -30,15 +30,15 @@ android {
|
|||
buildFeatures {
|
||||
buildConfig = true
|
||||
}
|
||||
compileSdk = 35
|
||||
compileSdk = Configs.COMPILE_SDK
|
||||
defaultConfig {
|
||||
minSdk = 21
|
||||
minSdk = Configs.MIN_SDK_VERSION
|
||||
}
|
||||
|
||||
namespace = "com.geeksville.mesh.network"
|
||||
compileOptions {
|
||||
sourceCompatibility(JavaVersion.VERSION_17)
|
||||
targetCompatibility(JavaVersion.VERSION_17)
|
||||
sourceCompatibility(JavaVersion.VERSION_21)
|
||||
targetCompatibility(JavaVersion.VERSION_21)
|
||||
}
|
||||
|
||||
flavorDimensions += "default"
|
||||
|
|
@ -54,7 +54,7 @@ android {
|
|||
|
||||
kotlin {
|
||||
compilerOptions {
|
||||
jvmTarget.set(JvmTarget.JVM_17)
|
||||
jvmTarget.set(JvmTarget.JVM_21)
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue