Signal-Android/paging/lib/build.gradle

23 wiersze
518 B
Groovy

apply plugin: 'com.android.library'
android {
buildToolsVersion BUILD_TOOL_VERSION
compileSdkVersion COMPILE_SDK
defaultConfig {
minSdkVersion MINIMUM_SDK
targetSdkVersion TARGET_SDK
}
compileOptions {
sourceCompatibility JAVA_VERSION
targetCompatibility JAVA_VERSION
}
}
dependencies {
implementation libs.androidx.appcompat
implementation libs.material.material
implementation project(':core-util')
testImplementation testLibs.junit.junit
}