1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- apply plugin: 'com.android.library'
- apply plugin: 'kotlin-android'
- apply plugin: 'kotlin-android-extensions'
- android {
- compileSdkVersion 28
- defaultConfig {
- minSdkVersion 15
- targetSdkVersion 27
- versionCode 1
- versionName "1.0"
- testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
- }
- }
- }
- ext {
- daggerVersion = 2.12
- lifecycleVersion = "1.1.0"
- koin_version = "2.0.0"
- }
- dependencies {
- implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
- implementation 'androidx.appcompat:appcompat:1.0.2'
- implementation 'com.google.android.material:material:1.0.0'
- implementation 'androidx.cardview:cardview:1.0.0'
- implementation 'androidx.recyclerview:recyclerview:1.0.0'
- implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
- implementation "androidx.lifecycle:lifecycle-extensions:2.0.0"
- implementation "androidx.lifecycle:lifecycle-common-java8:2.0.0"
- androidTestImplementation 'androidx.test:runner:1.2.0'
- androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
- api 'io.reactivex.rxjava2:rxandroid:2.1.0'
- api 'io.reactivex.rxjava2:rxjava:2.2.2'
- // Koin for Android
- implementation "org.koin:koin-android:$koin_version"
- implementation "org.koin:koin-android-viewmodel:$koin_version"
- testImplementation 'junit:junit:4.12'
- api(name: 'kmpdfkit-1.0.8.6 2019-04-29 androidx', ext: 'aar')
- implementation project(path: ':KdanBaseModule')
- }
|