Files
libsignal/java/android/packaging-test/build.gradle
Jordan Rose d390508da5 java: Eliminate other uses of deprecated Gradle features
And add `--warning-mode fail` to the CI invocations to not regress.
2026-03-04 15:41:18 -08:00

41 lines
903 B
Groovy

plugins {
id 'com.android.library'
}
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')
}