zcash-android-wallet/qrecycler/build.gradle

41 lines
1.0 KiB
Groovy

import cash.z.ecc.android.Deps
apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'
android {
compileSdkVersion Deps.compileSdkVersion
defaultConfig {
minSdkVersion Deps.minSdkVersion
targetSdkVersion Deps.targetSdkVersion
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
def javaVersion = JavaVersion.toVersion(project.property("ANDROID_JVM_TARGET"))
compileOptions {
sourceCompatibility javaVersion
targetCompatibility javaVersion
}
kotlinOptions {
jvmTarget = javaVersion.toString()
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
namespace 'cash.z.android.qrecycler'
}
dependencies {
implementation Deps.AndroidX.CORE_KTX
implementation Deps.Kotlin.STDLIB
// dependencies specific to this module, not shared with other modules
implementation Deps.Misc.Plugins.QR_SCANNER
}