mirror of
https://github.com/melihaksoy/Android-Kotlin-Modulerized-CleanArchitecture.git
synced 2026-03-22 01:19:45 +01:00
23 lines
599 B
Groovy
23 lines
599 B
Groovy
apply plugin: 'com.android.library'
|
|
apply plugin: 'kotlin-android'
|
|
apply plugin: 'kotlin-kapt'
|
|
apply plugin: "androidx.navigation.safeargs"
|
|
|
|
apply from: "$rootProject.projectDir/scripts/feature_module.gradle"
|
|
|
|
android {
|
|
packagingOptions {
|
|
exclude 'META-INF/LICENSE.md'
|
|
exclude 'META-INF/LICENSE-notice.md'
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
|
|
testImplementation testLibraries.jUnitApi
|
|
testImplementation testLibraries.mockk
|
|
testImplementation testLibraries.kluent
|
|
testImplementation testLibraries.coroutinesTest
|
|
}
|