92 lines
2.3 KiB
Kotlin
92 lines
2.3 KiB
Kotlin
import java.util.Properties
|
|
|
|
plugins {
|
|
id("com.android.application")
|
|
id("kotlin-android")
|
|
id("com.google.gms.google-services")
|
|
id("dev.flutter.flutter-gradle-plugin")
|
|
}
|
|
|
|
// تحميل local.properties
|
|
val localProperties = Properties()
|
|
val localPropertiesFile = rootProject.file("local.properties")
|
|
if (localPropertiesFile.exists()) {
|
|
localPropertiesFile.reader().use {
|
|
localProperties.load(it)
|
|
}
|
|
}
|
|
|
|
// تحميل key.properties
|
|
val keystoreProperties = Properties()
|
|
val keystorePropertiesFile = rootProject.file("key.properties")
|
|
if (keystorePropertiesFile.exists()) {
|
|
keystorePropertiesFile.inputStream().use {
|
|
keystoreProperties.load(it)
|
|
}
|
|
}
|
|
|
|
android {
|
|
namespace = "com.service_intaleq"
|
|
compileSdk = 36
|
|
ndkVersion = "27.0.12077973"
|
|
|
|
defaultConfig {
|
|
applicationId = "com.service_intaleq"
|
|
minSdk = 23
|
|
targetSdk = 36
|
|
versionCode = 1
|
|
versionName = "1.0"
|
|
multiDexEnabled = true
|
|
|
|
ndk {
|
|
abiFilters += listOf("armeabi-v7a", "arm64-v8a", "x86", "x86_64")
|
|
}
|
|
}
|
|
|
|
signingConfigs {
|
|
create("release") {
|
|
keyAlias = keystoreProperties["keyAlias"] as String?
|
|
keyPassword = keystoreProperties["keyPassword"] as String?
|
|
storeFile = keystoreProperties["storeFile"]?.let { file(it as String) }
|
|
storePassword = keystoreProperties["storePassword"] as String?
|
|
}
|
|
}
|
|
|
|
buildTypes {
|
|
getByName("release") {
|
|
signingConfig = signingConfigs.getByName("release")
|
|
isMinifyEnabled = true
|
|
isShrinkResources = true
|
|
proguardFiles(
|
|
getDefaultProguardFile("proguard-android-optimize.txt"),
|
|
"proguard-rules.pro"
|
|
)
|
|
}
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility = JavaVersion.VERSION_11
|
|
targetCompatibility = JavaVersion.VERSION_11
|
|
}
|
|
|
|
kotlinOptions {
|
|
jvmTarget = "11"
|
|
}
|
|
|
|
externalNativeBuild {
|
|
cmake {
|
|
path = file("src/main/cpp/CMakeLists.txt")
|
|
version = "3.31.5"
|
|
}
|
|
}
|
|
}
|
|
|
|
flutter {
|
|
source = "../.."
|
|
}
|
|
|
|
dependencies {
|
|
implementation("com.scottyab:rootbeer-lib:0.1.0")
|
|
implementation("com.google.android.gms:play-services-safetynet:18.0.1")
|
|
coreLibraryDesugaring("com.android.tools:desugar_jdk_libs:2.1.4")
|
|
} |