42 lines
1.0 KiB
Plaintext
42 lines
1.0 KiB
Plaintext
plugins {
|
|
id("com.android.application")
|
|
kotlin("android")
|
|
id("kotlin-android-extensions")
|
|
}
|
|
|
|
group = "net.codinux.banking.epcqrcode.android"
|
|
|
|
|
|
dependencies {
|
|
implementation(project(":EpcQrCode"))
|
|
|
|
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.0")
|
|
|
|
implementation("androidx.core:core-ktx:1.2.0")
|
|
implementation("androidx.appcompat:appcompat:1.1.0")
|
|
implementation("androidx.constraintlayout:constraintlayout:1.1.3")
|
|
|
|
implementation("com.google.android.material:material:1.2.1")
|
|
}
|
|
|
|
android {
|
|
compileSdkVersion(29)
|
|
defaultConfig {
|
|
applicationId = "net.codinux.banking.epcqrcode.android"
|
|
minSdkVersion(24)
|
|
targetSdkVersion(29)
|
|
versionCode = 1
|
|
versionName = "1.0"
|
|
}
|
|
buildTypes {
|
|
getByName("release") {
|
|
isMinifyEnabled = false
|
|
}
|
|
}
|
|
|
|
lintOptions {
|
|
isCheckReleaseBuilds = false
|
|
//If you want to continue even if errors found use following line
|
|
isAbortOnError = false
|
|
}
|
|
} |