84d812a6d6
Refactoring Separation into libraries
81 lines
2.4 KiB
Groovy
81 lines
2.4 KiB
Groovy
plugins {
|
|
id 'com.android.application'
|
|
id 'kotlin-android'
|
|
id 'kotlin-kapt'
|
|
}
|
|
|
|
android {
|
|
compileSdkVersion 30
|
|
buildToolsVersion "30.0.3"
|
|
|
|
defaultConfig {
|
|
applicationId "com.meloda.fast"
|
|
minSdkVersion 23
|
|
targetSdkVersion 30
|
|
versionCode 1
|
|
versionName "1.0"
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
|
|
compileOptions {
|
|
coreLibraryDesugaringEnabled true
|
|
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
|
|
kotlinOptions {
|
|
jvmTarget = JavaVersion.VERSION_1_8.toString()
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(":mvp")
|
|
implementation project(":vksdk")
|
|
implementation project(":arrayutils")
|
|
implementation project(":netservices")
|
|
implementation project(":concurrent")
|
|
implementation project(":extensions")
|
|
|
|
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:1.1.5'
|
|
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib:${kotlin_version}"
|
|
|
|
implementation 'androidx.core:core-ktx:1.5.0-beta02'
|
|
|
|
implementation 'androidx.appcompat:appcompat:1.3.0-beta01'
|
|
implementation 'androidx.preference:preference-ktx:1.1.1'
|
|
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.2.0-alpha01'
|
|
implementation 'androidx.recyclerview:recyclerview:1.2.0-beta02'
|
|
implementation 'androidx.cardview:cardview:1.0.0'
|
|
implementation 'androidx.fragment:fragment-ktx:1.3.0'
|
|
implementation 'com.google.android.material:material:1.3.0'
|
|
|
|
implementation 'androidx.room:room-runtime:2.3.0-beta02'
|
|
kapt 'androidx.room:room-compiler:2.3.0-beta02'
|
|
|
|
implementation 'com.facebook.fresco:fresco:2.3.0'
|
|
|
|
implementation 'com.amulyakhare:com.amulyakhare.textdrawable:1.0.1'
|
|
|
|
implementation 'com.squareup.picasso:picasso:2.71828'
|
|
|
|
implementation 'com.github.rahatarmanahmed:circularprogressview:2.5.0'
|
|
|
|
implementation 'com.google.code.gson:gson:2.8.6'
|
|
|
|
implementation 'org.jsoup:jsoup:1.13.1'
|
|
|
|
implementation 'ch.acra:acra:4.11.1'
|
|
|
|
def appCenterSdkVersion = '4.1.0'
|
|
implementation "com.microsoft.appcenter:appcenter-analytics:${appCenterSdkVersion}"
|
|
implementation "com.microsoft.appcenter:appcenter-crashes:${appCenterSdkVersion}"
|
|
implementation "com.microsoft.appcenter:appcenter-distribute:${appCenterSdkVersion}"
|
|
} |