import cash.z.ecc.android.Deps apply plugin: 'com.android.library' apply plugin: 'kotlin-android' android { compileSdkVersion Deps.compileSdkVersion useLibrary 'android.test.runner' defaultConfig { minSdkVersion Deps.minSdkVersion targetSdkVersion Deps.targetSdkVersion testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" testInstrumentationRunnerArguments clearPackageData: 'true' consumerProguardFiles 'consumer-rules.pro' } 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.ecc.android.lockbox' } dependencies { implementation Deps.JavaX.INJECT implementation Deps.Kotlin.STDLIB implementation Deps.AndroidX.APPCOMPAT implementation Deps.AndroidX.CORE_KTX // Zcash implementation Deps.Zcash.ANDROID_WALLET_PLUGINS implementation Deps.Misc.Plugins.SECURE_STORAGE androidTestImplementation Deps.Test.Android.JUNIT }