mirror of
https://github.com/mollyim/mollyim-android.git
synced 2025-05-12 21:30:39 +01:00
35 lines
635 B
Text
35 lines
635 B
Text
plugins {
|
|
id("signal-library")
|
|
id("kotlin-parcelize")
|
|
}
|
|
|
|
android {
|
|
namespace = "org.signal.donations"
|
|
|
|
flavorDimensions += "license"
|
|
|
|
productFlavors {
|
|
create("gms") {
|
|
dimension = "license"
|
|
isDefault = true
|
|
}
|
|
|
|
create("foss") {
|
|
dimension = "license"
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(":core-util"))
|
|
|
|
implementation(libs.jackson.core)
|
|
|
|
testImplementation(testLibs.robolectric.robolectric) {
|
|
exclude(group = "com.google.protobuf", module = "protobuf-java")
|
|
}
|
|
|
|
"gmsApi"(libs.google.play.services.wallet)
|
|
"fossApi"(project(":libfakegms"))
|
|
api(libs.square.okhttp3)
|
|
}
|