| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- apply plugin: 'com.android.library'
- apply plugin: 'kotlin-android'
- apply plugin: 'kotlin-android-extensions'
- apply plugin: 'kotlin-kapt'
- android {
- compileSdkVersion rootProject.compileSdkVersion
- buildToolsVersion "29.0.3"
- defaultConfig {
- minSdkVersion rootProject.minSdkVersion
- targetSdkVersion rootProject.targetSdkVersion
- versionCode 1
- versionName "1.0"
- testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
- consumerProguardFiles "consumer-rules.pro"
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
- }
- }
- dataBinding {
- enabled = true
- }
- compileOptions {
- sourceCompatibility JavaVersion.VERSION_1_8
- targetCompatibility JavaVersion.VERSION_1_8
- }
- kotlinOptions {
- jvmTarget = '1.8'
- }
- }
- apply from: "$project.rootDir/scripts/deps_versions.gradle"
- dependencies {
- implementation fileTree(dir: "libs", include: ["*.jar"])
- implementation kotlinStdlib
- api project(':core_api')
- implementation project(':core')
- implementation project(':utils')
- //DAGGER
- implementation dagger
- kapt daggerCompiler
- implementation constraintlayout
- //Timber
- implementation timber
- implementation navigationFragment
- implementation retrofit
- //AndroidX
- implementation legacySupport
- implementation appCompat
- implementation androidxCore
- //Unit test
- testImplementation junit
- testImplementation mockitoCore
- testImplementation kotlinxCoroutinesTest
- testImplementation robolectric
- testImplementation androidXCoreTest
- //Instrumental Test
- androidTestImplementation junitInstrumental
- androidTestImplementation espressoCore
- }
|