34 lines
No EOL
791 B
Groovy
34 lines
No EOL
791 B
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
buildToolsVersion BUILD_TOOL_VERSION
|
|
compileSdkVersion COMPILE_SDK
|
|
|
|
defaultConfig {
|
|
applicationId "org.signal.pagingtest"
|
|
versionCode 1
|
|
versionName "1.0"
|
|
|
|
minSdkVersion MINIMUM_SDK
|
|
targetSdkVersion TARGET_SDK
|
|
multiDexEnabled true
|
|
}
|
|
|
|
compileOptions {
|
|
coreLibraryDesugaringEnabled true
|
|
sourceCompatibility JAVA_VERSION
|
|
targetCompatibility JAVA_VERSION
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
coreLibraryDesugaring libs.android.tools.desugar
|
|
|
|
implementation libs.androidx.appcompat
|
|
implementation libs.material.material
|
|
implementation libs.androidx.constraintlayout
|
|
|
|
testImplementation testLibs.junit.junit
|
|
|
|
implementation project(':paging')
|
|
} |