| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- 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 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 {
- 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')
- }
|