48 lines
1 KiB
Groovy
48 lines
1 KiB
Groovy
plugins {
|
|
id 'com.android.application'
|
|
id 'kotlin-android'
|
|
id 'kotlin-kapt'
|
|
id 'witness'
|
|
}
|
|
|
|
apply from: 'witness-verifications.gradle'
|
|
|
|
android {
|
|
compileSdk COMPILE_SDK
|
|
|
|
defaultConfig {
|
|
applicationId "org.signal.donations.app"
|
|
versionCode 1
|
|
versionName "1.0"
|
|
multiDexEnabled true
|
|
|
|
minSdk MINIMUM_SDK
|
|
targetSdk TARGET_SDK
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility JAVA_VERSION
|
|
targetCompatibility JAVA_VERSION
|
|
}
|
|
kotlinOptions {
|
|
jvmTarget = '1.8'
|
|
}
|
|
}
|
|
|
|
dependencyVerification {
|
|
configuration = '(debug|release)RuntimeClasspath'
|
|
}
|
|
|
|
dependencies {
|
|
implementation libs.androidx.core.ktx
|
|
implementation libs.androidx.appcompat
|
|
implementation libs.material.material
|
|
implementation project(':donations')
|
|
implementation project(':core-util')
|
|
}
|