zcash-android-wallet-poc/zcash-android-wallet-app/app/build.gradle

63 lines
2.4 KiB
Groovy

// note: had to abandon the 'plugins' syntax because the navigation graph editor appears to have a bug where it adds kotlin-android and kotlin-android extensions "automatically" when it doesn't detect them. This would constantly break the build. TODO: file a bug on this at b.android.com
// the main side effect is that plugins have to include their classpath in the parent script, rather than just specifying the 'version' in the plugins dsl
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
apply plugin: 'kotlin-kapt'
apply plugin: 'deploygate'
apply plugin: 'com.github.ben-manes.versions'
android {
compileSdkVersion buildConfig.compileSdkVersion
defaultConfig {
applicationId "cash.z.android.wallet"
minSdkVersion buildConfig.minSdkVersion
targetSdkVersion buildConfig.targetSdkVersion
versionCode 17 // todo: change this to 1_00_04 format, once we graduate beyond zero for the major version number because leading zeros indicate on octal number.
versionName "0.2.5-alpha"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
vectorDrawables.useSupportLibrary = true
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}
dependencies {
// Android
implementation deps.androidx.appcompat
implementation deps.androidx.constraintLayout
implementation deps.androidx.core
implementation deps.androidx.coreKtx
implementation deps.androidx.navigation.fragment
implementation deps.androidx.navigation.fragmentKtx
implementation deps.androidx.navigation.ui
implementation deps.androidx.navigation.uiKtx
implementation deps.kotlin.stdlib
implementation deps.material
// Zcash
implementation deps.zcash.walletSdk
// Dagger
implementation deps.dagger.android.support
kapt deps.dagger.android.processor
kapt deps.dagger.compiler
// Other
implementation deps.speeddial
testImplementation deps.junit
androidTestImplementation deps.androidx.test.runner
androidTestImplementation deps.androidx.test.espresso
compile project(path: ':qrecycler')
}