32 lines
601 B
Text
32 lines
601 B
Text
|
|
plugins {
|
||
|
|
id("signal-library")
|
||
|
|
id("kotlin-parcelize")
|
||
|
|
}
|
||
|
|
|
||
|
|
android {
|
||
|
|
namespace = "org.signal.donations"
|
||
|
|
|
||
|
|
buildFeatures {
|
||
|
|
buildConfig = true
|
||
|
|
}
|
||
|
|
|
||
|
|
defaultConfig {
|
||
|
|
vectorDrawables.useSupportLibrary = true
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
dependencies {
|
||
|
|
implementation(project(":core-util"))
|
||
|
|
|
||
|
|
implementation(libs.kotlin.reflect)
|
||
|
|
implementation(libs.jackson.module.kotlin)
|
||
|
|
implementation(libs.jackson.core)
|
||
|
|
|
||
|
|
testImplementation(testLibs.robolectric.robolectric) {
|
||
|
|
exclude(group = "com.google.protobuf", module = "protobuf-java")
|
||
|
|
}
|
||
|
|
|
||
|
|
api(libs.google.play.services.wallet)
|
||
|
|
api(libs.square.okhttp3)
|
||
|
|
}
|