2021-10-08 15:18:52 -04:00
|
|
|
plugins {
|
2023-02-13 17:03:08 -05:00
|
|
|
id 'signal-library'
|
2021-10-08 15:18:52 -04:00
|
|
|
id 'kotlin-kapt'
|
2023-08-23 13:15:45 -04:00
|
|
|
id 'com.squareup.wire'
|
2021-10-08 15:18:52 -04:00
|
|
|
}
|
2020-12-04 18:31:58 -05:00
|
|
|
|
|
|
|
android {
|
2023-02-11 15:35:01 -05:00
|
|
|
namespace 'org.signal.core.util'
|
2020-12-04 18:31:58 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2022-03-23 12:56:11 -04:00
|
|
|
implementation libs.androidx.sqlite
|
2021-01-05 19:13:38 -04:00
|
|
|
|
2021-09-14 14:57:04 -03:00
|
|
|
testImplementation testLibs.junit.junit
|
|
|
|
testImplementation testLibs.mockito.core
|
2023-09-18 15:32:43 -04:00
|
|
|
testImplementation (testLibs.robolectric.robolectric)
|
2021-01-05 19:13:38 -04:00
|
|
|
}
|
2023-08-23 13:15:45 -04:00
|
|
|
|
|
|
|
wire {
|
|
|
|
kotlin {
|
|
|
|
javaInterop = true
|
|
|
|
}
|
|
|
|
|
|
|
|
sourcePath {
|
|
|
|
srcDir 'src/main/protowire'
|
|
|
|
}
|
|
|
|
}
|