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
|
2022-12-01 18:15:37 -05:00
|
|
|
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
|
2023-02-06 11:04:40 -04:00
|
|
|
version = "0.47.1"
|
2022-02-14 14:18:03 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2022-09-14 09:18:10 -03:00
|
|
|
implementation libs.jknack.handlebars
|
2022-02-14 14:18:03 -05:00
|
|
|
|
|
|
|
implementation libs.androidx.appcompat
|
|
|
|
implementation libs.material.material
|
2022-12-01 18:15:37 -05:00
|
|
|
implementation libs.androidx.multidex
|
2022-02-14 14:18:03 -05:00
|
|
|
implementation libs.androidx.sqlite
|
|
|
|
implementation project(':core-util')
|
|
|
|
testImplementation testLibs.junit.junit
|
|
|
|
|
2022-09-14 09:18:10 -03:00
|
|
|
implementation libs.nanohttpd.webserver
|
2022-02-14 14:18:03 -05:00
|
|
|
}
|