apply plugin: 'com.android.application' apply plugin: 'kotlin-android' apply plugin: 'kotlin-android-extensions' apply plugin: 'kotlin-kapt' android { compileSdkVersion rootProject.compileSdkVersion buildToolsVersion "29.0.3" defaultConfig { applicationId "com.mrozon.healthdiary" minSdkVersion rootProject.minSdkVersion targetSdkVersion rootProject.targetSdkVersion versionCode 1 versionName "1.0" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" } buildTypes { release { minifyEnabled true proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' } staging { minifyEnabled true signingConfig debug.signingConfig } } dataBinding { enabled = true } compileOptions { sourceCompatibility JavaVersion.VERSION_1_8 targetCompatibility JavaVersion.VERSION_1_8 } kotlinOptions { jvmTarget = '1.8' } lintOptions { ignoreTestSources true abortOnError true xmlReport false baselineFile file("$project.rootDir/config/baseline.xml") checkDependencies true } } apply from: "$project.rootDir/scripts/deps_versions.gradle" dependencies { lintChecks project(':lint_repo') api project(':core_api') implementation project(':core') implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0' implementation dagger kapt daggerCompiler implementation navigationFragment implementation navigationUi implementation navigationDynamicFeatures implementation timber implementation constraintlayout implementation cardview implementation recyclerview implementation material implementation fileTree(dir: 'libs', include: ['*.jar']) implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" implementation 'androidx.appcompat:appcompat:1.2.0' implementation 'androidx.core:core-ktx:1.3.1' testImplementation 'junit:junit:4.12' androidTestImplementation 'androidx.test.ext:junit:1.1.1' androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0' implementation project(':utils') implementation project(':feature_splash') implementation project(':feature_auth') implementation project(':feature_person') implementation project(':feature_measure_type') }