kopia lustrzana https://github.com/ryukoposting/Signal-Android
38 wiersze
958 B
Groovy
38 wiersze
958 B
Groovy
apply plugin: 'com.android.library'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
android {
|
|
buildToolsVersion BUILD_TOOL_VERSION
|
|
compileSdkVersion COMPILE_SDK
|
|
|
|
defaultConfig {
|
|
minSdkVersion MINIMUM_SDK
|
|
targetSdkVersion TARGET_SDK
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility JAVA_VERSION
|
|
targetCompatibility JAVA_VERSION
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation libs.androidx.appcompat
|
|
implementation project(':core-util')
|
|
implementation libs.signal.client.java
|
|
api libs.greenrobot.eventbus
|
|
|
|
testImplementation testLibs.junit.junit
|
|
testImplementation testLibs.androidx.test.core
|
|
testImplementation (testLibs.robolectric.robolectric) {
|
|
exclude group: 'com.google.protobuf', module: 'protobuf-java'
|
|
}
|
|
testImplementation testLibs.robolectric.shadows.multidex
|
|
testImplementation testLibs.hamcrest.hamcrest
|
|
|
|
testImplementation(testFixtures(project(":libsignal-service")))
|
|
}
|