2020-11-25 22:46:52 +00:00
|
|
|
plugins {
|
|
|
|
id 'com.android.library'
|
|
|
|
id 'kotlin-android'
|
|
|
|
}
|
|
|
|
|
2021-05-18 04:08:21 +00:00
|
|
|
android {
|
|
|
|
compileSdkVersion androidCompileSdkVersion
|
2021-05-18 05:03:17 +00:00
|
|
|
|
2021-07-01 07:06:42 +00:00
|
|
|
defaultConfig {
|
|
|
|
minSdkVersion androidMinimumSdkVersion
|
|
|
|
}
|
|
|
|
|
2021-05-18 05:03:17 +00:00
|
|
|
compileOptions {
|
|
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
|
|
}
|
2021-05-18 04:08:21 +00:00
|
|
|
}
|
|
|
|
|
2020-11-25 22:46:52 +00:00
|
|
|
dependencies {
|
2020-12-02 05:36:40 +00:00
|
|
|
implementation project(":libsignal")
|
2022-08-10 08:17:48 +00:00
|
|
|
implementation project(":liblazysodium")
|
2021-05-19 05:12:35 +00:00
|
|
|
implementation "net.java.dev.jna:jna:5.8.0@aar"
|
2021-05-18 03:27:51 +00:00
|
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlinVersion"
|
2022-12-19 00:29:05 +00:00
|
|
|
implementation "androidx.core:core-ktx:$coreVersion"
|
|
|
|
implementation "androidx.appcompat:appcompat:$appcompatVersion"
|
|
|
|
implementation "androidx.preference:preference-ktx:$preferenceVersion"
|
|
|
|
implementation "com.google.android.material:material:$materialVersion"
|
2020-11-27 04:56:16 +00:00
|
|
|
implementation "com.google.protobuf:protobuf-java:$protobufVersion"
|
2022-01-14 05:56:15 +00:00
|
|
|
implementation "com.google.dagger:hilt-android:$daggerVersion"
|
2022-12-19 00:29:05 +00:00
|
|
|
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
|
|
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
|
2022-01-14 05:56:15 +00:00
|
|
|
implementation "com.github.bumptech.glide:glide:$glideVersion"
|
2021-05-18 05:03:17 +00:00
|
|
|
implementation 'com.amulyakhare:com.amulyakhare.textdrawable:1.0.1'
|
|
|
|
implementation 'com.annimon:stream:1.1.8'
|
2021-01-08 00:12:39 +00:00
|
|
|
implementation 'com.makeramen:roundedimageview:2.1.0'
|
2021-05-20 23:05:55 +00:00
|
|
|
implementation 'com.esotericsoftware:kryo:5.1.1'
|
2020-12-02 05:36:40 +00:00
|
|
|
implementation "com.google.protobuf:protobuf-java:$protobufVersion"
|
|
|
|
implementation "com.fasterxml.jackson.core:jackson-databind:$jacksonDatabindVersion"
|
2022-08-10 08:17:48 +00:00
|
|
|
implementation "com.github.oxen-io.session-android-curve-25519:curve25519-java:$curve25519Version"
|
2020-12-02 05:36:40 +00:00
|
|
|
implementation "com.squareup.okhttp3:okhttp:$okhttpVersion"
|
2021-05-18 04:45:37 +00:00
|
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlinVersion"
|
2020-12-02 05:36:40 +00:00
|
|
|
implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlinVersion"
|
2022-01-14 05:56:15 +00:00
|
|
|
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:$coroutinesVersion"
|
2020-12-02 05:36:40 +00:00
|
|
|
implementation "nl.komponents.kovenant:kovenant:$kovenantVersion"
|
2022-12-19 00:29:05 +00:00
|
|
|
testImplementation "junit:junit:$junitVersion"
|
2022-02-07 06:06:27 +00:00
|
|
|
testImplementation 'org.assertj:assertj-core:3.11.1'
|
|
|
|
testImplementation "org.mockito:mockito-inline:4.0.0"
|
|
|
|
testImplementation "org.mockito.kotlin:mockito-kotlin:$mockitoKotlinVersion"
|
|
|
|
testImplementation 'org.powermock:powermock-api-mockito:1.6.1'
|
|
|
|
testImplementation 'org.powermock:powermock-module-junit4:1.6.1'
|
|
|
|
testImplementation 'org.powermock:powermock-module-junit4-rule:1.6.1'
|
|
|
|
testImplementation 'org.powermock:powermock-classloading-xstream:1.6.1'
|
2022-12-19 00:29:05 +00:00
|
|
|
testImplementation "androidx.test:core:$testCoreVersion"
|
2022-02-07 06:06:27 +00:00
|
|
|
testImplementation "androidx.arch.core:core-testing:2.1.0"
|
|
|
|
testImplementation "org.jetbrains.kotlinx:kotlinx-coroutines-test:$coroutinesVersion"
|
2020-12-02 05:36:40 +00:00
|
|
|
testImplementation "org.conscrypt:conscrypt-openjdk-uber:2.0.0"
|
2021-05-18 05:03:17 +00:00
|
|
|
implementation 'org.greenrobot:eventbus:3.0.0'
|
2020-11-25 22:46:52 +00:00
|
|
|
}
|