Files
rasadyar_application/android/app/build.gradle.kts

45 lines
912 B
Kotlin
Raw Normal View History

2025-03-12 14:09:03 +03:30
plugins {
id("com.android.application")
id("kotlin-android")
id("dev.flutter.flutter-gradle-plugin")
}
android {
namespace = "ir.mnpc.rasadyar"
2025-03-12 14:09:03 +03:30
compileSdk = flutter.compileSdkVersion
ndkVersion = "27.0.12077973"
2025-03-12 14:09:03 +03:30
compileOptions {
2025-05-10 12:16:27 +03:30
sourceCompatibility = JavaVersion.VERSION_21
targetCompatibility = JavaVersion.VERSION_21
2025-03-12 14:09:03 +03:30
}
kotlinOptions {
2025-05-10 12:16:27 +03:30
jvmTarget = "21"
2025-03-12 14:09:03 +03:30
}
defaultConfig {
applicationId = "ir.mnpc.rasadyar"
2025-03-12 14:09:03 +03:30
minSdk = flutter.minSdkVersion
targetSdk = flutter.targetSdkVersion
versionCode = flutter.versionCode
versionName = flutter.versionName
}
2025-06-07 14:54:44 +03:30
packaging {
resources {
excludes += "META-INF/DEPENDENCIES"
}
}
2025-03-12 14:09:03 +03:30
buildTypes {
release {
signingConfig = signingConfigs.getByName("debug")
}
}
}
flutter {
source = "../.."
}