mirror of
https://github.com/melihaksoy/Android-Kotlin-Modulerized-CleanArchitecture.git
synced 2026-03-17 23:14:07 +01:00
* CircleCI config fixes * Implicit deeplinking via navController navigate * Removed jacoco.exec files. Closes # 32
44 lines
1.2 KiB
Groovy
44 lines
1.2 KiB
Groovy
apply plugin: 'com.android.application'
|
|
apply plugin: 'kotlin-android'
|
|
apply plugin: 'kotlin-kapt'
|
|
|
|
apply from: "$rootProject.projectDir/scripts/default_android_config.gradle"
|
|
apply from: "$rootProject.projectDir/scripts/sources.gradle"
|
|
apply from: "$rootProject.projectDir/scripts/flavors.gradle"
|
|
|
|
android {
|
|
defaultConfig {
|
|
applicationId "com.melih.rocketscience"
|
|
versionCode 1
|
|
versionName "1.0"
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
}
|
|
|
|
dataBinding {
|
|
enabled = true
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
|
|
implementation project(':core')
|
|
implementation project(':features:launches')
|
|
implementation project(':features:detail')
|
|
|
|
implementation libraries.coroutines
|
|
implementation libraries.navigation
|
|
|
|
debugImplementation libraries.leakCanary
|
|
|
|
androidTestImplementation testLibraries.espresso
|
|
|
|
// These libraries required by dagger to create dependency graph, but not by app
|
|
compileOnly libraries.retrofit
|
|
compileOnly libraries.room
|
|
compileOnly libraries.paging
|
|
|
|
// Need for proper renders in xml previews
|
|
compileOnly libraries.constraintLayout
|
|
}
|