mirror of
https://github.com/signalapp/Signal-Android.git
synced 2025-12-23 12:38:33 +00:00
34 lines
791 B
Groovy
34 lines
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')
|
|
} |