| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- 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 {
- api project(':core_api')
- implementation project(':core')
- //DAGGER
- implementation dagger
- implementation 'androidx.legacy:legacy-support-v4:1.0.0'
- kapt daggerCompiler
- implementation project(':utils')
- implementation constraintlayout
- //Timber
- implementation timber
- implementation navigationFragment
- implementation retrofit
- implementation coil
- implementation coilBase
- implementation coilSvg
- // implementation 'androidx.core:core-ktx:1.3.1'
- implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0'
- // implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.2.0'
- implementation "androidx.fragment:fragment-ktx:1.2.5"
- 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'
- }
|