mirror of
https://github.com/melihaksoy/Android-Kotlin-Modulerized-CleanArchitecture.git
synced 2026-04-30 12:44:22 +02:00
15 lines
429 B
Groovy
15 lines
429 B
Groovy
apply plugin: 'com.android.library'
|
|
apply plugin: 'kotlin-android'
|
|
apply plugin: 'kotlin-kapt'
|
|
|
|
apply from: "$rootProject.projectDir/scripts/feature_module.gradle"
|
|
|
|
dependencies {
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
|
|
testImplementation testLibraries.jUnitApi
|
|
testImplementation testLibraries.mockk
|
|
testImplementation testLibraries.kluent
|
|
testImplementation testLibraries.coroutinesTest
|
|
}
|