2021-03-03 16:03:49 -05:00
|
|
|
apply plugin: 'com.android.library'
|
|
|
|
|
2021-03-11 13:16:51 -05:00
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
2021-03-03 16:03:49 -05:00
|
|
|
android {
|
|
|
|
buildToolsVersion BUILD_TOOL_VERSION
|
|
|
|
compileSdkVersion COMPILE_SDK
|
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
minSdkVersion MINIMUM_SDK
|
|
|
|
targetSdkVersion TARGET_SDK
|
|
|
|
}
|
|
|
|
|
|
|
|
compileOptions {
|
|
|
|
sourceCompatibility JAVA_VERSION
|
|
|
|
targetCompatibility JAVA_VERSION
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2021-09-14 14:57:04 -03:00
|
|
|
implementation libs.androidx.appcompat
|
2021-03-03 16:03:49 -05:00
|
|
|
implementation project(':core-util')
|
2021-09-14 14:57:04 -03:00
|
|
|
implementation libs.signal.client.java
|
|
|
|
api libs.greenrobot.eventbus
|
2021-03-11 13:16:51 -05:00
|
|
|
|
2021-09-14 14:57:04 -03:00
|
|
|
testImplementation testLibs.junit.junit
|
|
|
|
testImplementation testLibs.androidx.test.core
|
|
|
|
testImplementation (testLibs.robolectric.robolectric) {
|
2021-03-11 13:16:51 -05:00
|
|
|
exclude group: 'com.google.protobuf', module: 'protobuf-java'
|
|
|
|
}
|
2021-09-14 14:57:04 -03:00
|
|
|
testImplementation testLibs.robolectric.shadows.multidex
|
|
|
|
testImplementation testLibs.hamcrest.hamcrest
|
2021-06-29 15:02:44 -04:00
|
|
|
|
|
|
|
testImplementation(testFixtures(project(":libsignal-service")))
|
2021-03-03 16:03:49 -05:00
|
|
|
}
|