Refactor: Use JVM toolchain and disable Crashlytics for F-Droid (#2252)

Signed-off-by: James Rich <2199651+jamesarich@users.noreply.github.com>
This commit is contained in:
James Rich 2025-06-26 00:18:59 +00:00 committed by GitHub
parent 11edd9a8d2
commit eb81ded56a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 26 additions and 61 deletions

View file

@ -15,7 +15,6 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
import org.jetbrains.kotlin.gradle.dsl.JvmTarget
plugins {
alias(libs.plugins.android.library)
@ -36,10 +35,6 @@ android {
}
namespace = "com.geeksville.mesh.network"
compileOptions {
sourceCompatibility(JavaVersion.VERSION_21)
targetCompatibility(JavaVersion.VERSION_21)
}
flavorDimensions += "default"
productFlavors {
@ -53,9 +48,7 @@ android {
}
kotlin {
compilerOptions {
jvmTarget.set(JvmTarget.JVM_21)
}
jvmToolchain(21)
}
dependencies {