mirror of
https://github.com/melihaksoy/Android-Kotlin-Modulerized-CleanArchitecture.git
synced 2026-04-27 11:17:06 +02:00
Initial commit
This commit is contained in:
30
repository/build.gradle
Normal file
30
repository/build.gradle
Normal file
@@ -0,0 +1,30 @@
|
||||
apply plugin: 'com.android.library'
|
||||
apply plugin: 'kotlin-android'
|
||||
apply plugin: 'kotlin-kapt'
|
||||
|
||||
apply from: "$rootProject.projectDir/scripts/module.gradle"
|
||||
|
||||
android {
|
||||
defaultConfig {
|
||||
javaCompileOptions {
|
||||
annotationProcessorOptions {
|
||||
arguments = ["room.schemaLocation": "$rootProject.projectDir/reports/room".toString()]
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
||||
|
||||
implementation libraries.coroutines
|
||||
implementation libraries.retrofit
|
||||
implementation libraries.room
|
||||
implementation libraries.moshiKotlin
|
||||
implementation libraries.okHttpLogger
|
||||
|
||||
kapt annotationProcessors.roomCompiler
|
||||
|
||||
testImplementation testLibraries.coroutinesCore
|
||||
testImplementation testLibraries.coroutinesTest
|
||||
}
|
||||
Reference in New Issue
Block a user