2020-11-10 00:42:41 +00:00
|
|
|
plugins {
|
|
|
|
id("com.android.application")
|
|
|
|
kotlin("android")
|
|
|
|
id("kotlin-android-extensions")
|
|
|
|
}
|
|
|
|
|
|
|
|
group = "net.codinux.banking.epcqrcode.android"
|
|
|
|
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation(project(":EpcQrCode"))
|
2022-03-13 22:25:49 +00:00
|
|
|
|
|
|
|
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.0")
|
|
|
|
|
2020-11-10 00:42:41 +00:00
|
|
|
implementation("androidx.core:core-ktx:1.2.0")
|
|
|
|
implementation("androidx.appcompat:appcompat:1.1.0")
|
|
|
|
implementation("androidx.constraintlayout:constraintlayout:1.1.3")
|
2020-11-15 20:08:03 +00:00
|
|
|
|
|
|
|
implementation("com.google.android.material:material:1.2.1")
|
2020-11-10 00:42:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
android {
|
2023-04-11 00:19:17 +00:00
|
|
|
compileSdkVersion(33)
|
2020-11-10 00:42:41 +00:00
|
|
|
defaultConfig {
|
|
|
|
applicationId = "net.codinux.banking.epcqrcode.android"
|
|
|
|
minSdkVersion(24)
|
2023-04-11 00:19:17 +00:00
|
|
|
targetSdkVersion(33)
|
2020-11-10 00:42:41 +00:00
|
|
|
versionCode = 1
|
|
|
|
versionName = "1.0"
|
|
|
|
}
|
|
|
|
buildTypes {
|
|
|
|
getByName("release") {
|
|
|
|
isMinifyEnabled = false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-04-11 00:16:59 +00:00
|
|
|
compileOptions {
|
|
|
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
|
|
|
targetCompatibility = JavaVersion.VERSION_1_8
|
|
|
|
}
|
|
|
|
kotlinOptions {
|
|
|
|
jvmTarget = "1.8"
|
|
|
|
}
|
|
|
|
|
2020-11-10 00:42:41 +00:00
|
|
|
lintOptions {
|
|
|
|
isCheckReleaseBuilds = false
|
|
|
|
//If you want to continue even if errors found use following line
|
|
|
|
isAbortOnError = false
|
|
|
|
}
|
|
|
|
}
|