Adoird build migration and update

This commit is contained in:
Yasien Mac Mini 2026-07-01 14:01:25 +02:00
parent 04f034971f
commit 7a5c8721dd
1062 changed files with 143083 additions and 221 deletions

View file

@ -6,7 +6,7 @@ plugins {
// START: FlutterFire Configuration
id("com.google.gms.google-services")
// END: FlutterFire Configuration
id("kotlin-android")
//id("kotlin-android")
// The Flutter Gradle Plugin must be applied after the Android and Kotlin Gradle plugins.
id("dev.flutter.flutter-gradle-plugin")
}
@ -20,17 +20,17 @@ if (keystorePropertiesFile.exists()) {
android {
namespace = "za.co.mzansiinnovationhub.mih"
compileSdk = 36
ndkVersion = "27.0.12077973"
ndkVersion = "28.2.13676358"
// ndkVersion = flutter.ndkVersion
compileOptions {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
kotlinOptions {
jvmTarget = JavaVersion.VERSION_11.toString()
}
//kotlinOptions {
// jvmTarget = JavaVersion.VERSION_17.toString()
//}
defaultConfig {
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
@ -67,6 +67,12 @@ android {
}
}
kotlin {
compilerOptions {
jvmTarget = org.jetbrains.kotlin.gradle.dsl.JvmTarget.JVM_17
}
}
flutter {
source = "../.."
}