mirror of https://github.com/readrops/Readrops.git
96 lines
2.9 KiB
Groovy
96 lines
2.9 KiB
Groovy
apply plugin: 'com.android.library'
|
|
apply plugin: 'kotlin-android'
|
|
apply plugin: 'kotlin-kapt'
|
|
apply plugin: 'kotlin-parcelize'
|
|
|
|
android {
|
|
compileSdkVersion rootProject.ext.compileSdkVersion
|
|
|
|
defaultConfig {
|
|
minSdkVersion rootProject.ext.minSdkVersion
|
|
targetSdkVersion rootProject.ext.targetSdkVersion
|
|
buildToolsVersion rootProject.ext.buildToolsVersion
|
|
|
|
javaCompileOptions {
|
|
annotationProcessorOptions {
|
|
arguments = [
|
|
"room.incremental" : "true",
|
|
"room.schemaLocation": "$projectDir/schemas".toString()
|
|
]
|
|
}
|
|
}
|
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
consumerProguardFiles 'consumer-rules.pro'
|
|
}
|
|
|
|
sourceSets {
|
|
androidTest.assets.srcDirs += files("$projectDir/schemas".toString())
|
|
}
|
|
|
|
lintOptions {
|
|
abortOnError false
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled true
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
}
|
|
|
|
debug {
|
|
minifyEnabled false
|
|
testCoverageEnabled true
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
kotlinOptions {
|
|
jvmTarget = '1.8'
|
|
}
|
|
}
|
|
|
|
// Needed for kapt starting with kotlin plugin 1.5
|
|
kapt {
|
|
arguments {
|
|
arg("room.schemaLocation", "$projectDir/schemas".toString())
|
|
arg("room.incremental", "true")
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
|
|
api "androidx.core:core-ktx:1.6.0"
|
|
api 'androidx.appcompat:appcompat:1.3.0'
|
|
api "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
|
|
|
testImplementation 'junit:junit:4.13'
|
|
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
|
|
androidTestImplementation 'androidx.test:runner:1.4.0'
|
|
androidTestImplementation 'androidx.test:rules:1.4.0'
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
|
|
|
|
def room_version = "2.3.0"
|
|
api "androidx.room:room-runtime:$room_version"
|
|
kapt "androidx.room:room-compiler:$room_version"
|
|
implementation "androidx.room:room-rxjava2:$room_version"
|
|
androidTestImplementation "androidx.room:room-testing:$room_version"
|
|
|
|
implementation 'com.github.MatrixDev.Roomigrant:RoomigrantLib:0.3.4'
|
|
kapt 'com.github.MatrixDev.Roomigrant:RoomigrantCompiler:0.3.4'
|
|
|
|
api 'androidx.paging:paging-runtime:2.1.2'
|
|
api 'androidx.paging:paging-common:2.1.2'
|
|
|
|
api 'joda-time:joda-time:2.10.10'
|
|
|
|
api "io.insert-koin:koin-core:$rootProject.ext.koin_version"
|
|
api "io.insert-koin:koin-android:$rootProject.ext.koin_version"
|
|
api "io.insert-koin:koin-android-compat:$rootProject.ext.koin_version"
|
|
}
|