Signal-Android/spinner/lib/build.gradle

45 lines
1,003 B
Groovy
Raw Normal View History

2022-02-14 14:18:03 -05:00
plugins {
id 'com.android.library'
id 'kotlin-android'
id 'org.jlleitschuh.gradle.ktlint'
}
android {
2023-02-11 15:35:01 -05:00
namespace 'org.signal.spinner'
2022-02-14 14:18:03 -05:00
buildToolsVersion BUILD_TOOL_VERSION
compileSdkVersion COMPILE_SDK
defaultConfig {
minSdkVersion MINIMUM_SDK
targetSdkVersion TARGET_SDK
multiDexEnabled true
2022-02-14 14:18:03 -05:00
}
compileOptions {
sourceCompatibility JAVA_VERSION
targetCompatibility JAVA_VERSION
}
kotlinOptions {
jvmTarget = '1.8'
}
}
ktlint {
// Use a newer version to resolve https://github.com/JLLeitschuh/ktlint-gradle/issues/507
version = "0.47.1"
2022-02-14 14:18:03 -05:00
}
dependencies {
implementation libs.jknack.handlebars
2022-02-14 14:18:03 -05:00
implementation libs.androidx.appcompat
implementation libs.material.material
implementation libs.androidx.multidex
2022-02-14 14:18:03 -05:00
implementation libs.androidx.sqlite
implementation project(':core-util')
testImplementation testLibs.junit.junit
implementation libs.nanohttpd.webserver
2022-02-14 14:18:03 -05:00
}