[Structure] Refactor App class to Kotlin. Rewrite SzkolnyTask and posting notifications. Remove dependency on AppConfig. Update libraries and gradle.

This commit is contained in:
Kuba Szczodrzyński
2020-01-19 19:07:27 +01:00
parent 55c6e40d6d
commit b7fc6fcc38
131 changed files with 2429 additions and 2880 deletions

View File

@ -1,11 +1,11 @@
apply plugin: 'com.android.library'
android {
compileSdkVersion rootProject.ext.compileSdkVersion
compileSdkVersion setup.compileSdk
defaultConfig {
minSdkVersion 9
targetSdkVersion rootProject.ext.targetSdkVersion
targetSdkVersion setup.targetSdk
consumerProguardFiles 'proguard-rules.pro'
versionCode 1
versionName PROJ_VERSION
@ -40,7 +40,7 @@ android {
}
dependencies {
compileOnly "androidx.appcompat:appcompat:${androidXAppCompat}"
compileOnly "androidx.appcompat:appcompat:${versions.appcompat}"
compileOnly 'io.reactivex.rxjava2:rxjava:2.1.3'
api 'com.squareup.okhttp3:okhttp:3.12.0'
api 'com.google.code.gson:gson:2.8.5'