mirror of
https://github.com/signalapp/libsignal.git
synced 2026-04-25 17:25:18 +02:00
41 lines
914 B
Groovy
41 lines
914 B
Groovy
plugins {
|
|
id 'com.android.library' version '8.10.1'
|
|
}
|
|
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
mavenLocal()
|
|
}
|
|
|
|
android {
|
|
compileSdk 34
|
|
|
|
defaultConfig {
|
|
minSdkVersion 23
|
|
targetSdkVersion 33
|
|
multiDexEnabled true
|
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
}
|
|
|
|
compileOptions {
|
|
coreLibraryDesugaringEnabled true
|
|
sourceCompatibility JavaVersion.VERSION_17
|
|
targetCompatibility JavaVersion.VERSION_17
|
|
}
|
|
|
|
packagingOptions {
|
|
jniLibs.excludes.add("**/libsignal_jni_testing.so")
|
|
}
|
|
|
|
namespace "org.signal.libsignal.packagingtest"
|
|
}
|
|
|
|
dependencies {
|
|
androidTestImplementation "androidx.test:runner:1.5.2"
|
|
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
|
|
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:1.1.6'
|
|
androidTestImplementation project(':android')
|
|
}
|