diff --git a/app/build.gradle b/app/build.gradle index 5fe77d7..5c6c1b0 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -2,7 +2,6 @@ apply plugin: 'com.android.application' apply plugin: 'kotlin-android' apply plugin: 'kotlin-android-extensions' -def ktor_version = "1.2.5" def kotlin_version = "1.3.50" def sqldelight_version = "1.2.0" @@ -12,8 +11,8 @@ android { applicationId "com.inspiredandroid.newsout" minSdkVersion 22 targetSdkVersion 29 - versionCode 5 - versionName "1.2.1" + versionCode 6 + versionName "1.2.2" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" } buildTypes { @@ -42,7 +41,6 @@ androidExtensions { dependencies { implementation project(':shared') - implementation "com.android.support:support-core-utils:28.0.0" implementation "androidx.core:core-ktx:1.1.0" implementation "com.squareup.sqldelight:android-driver:$sqldelight_version" implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" @@ -50,8 +48,4 @@ dependencies { implementation "androidx.constraintlayout:constraintlayout:1.1.3" implementation "com.google.code.gson:gson:2.8.6" implementation "com.github.bumptech.glide:glide:4.10.0" - // implementation "io.ktor:ktor-client-core-jvm:$ktor_version" - // implementation "io.ktor:ktor-client-auth-jvm:$ktor_version" - //implementation "io.ktor:ktor-client-android:$ktor_version" - //implementation "io.ktor:ktor-client-auth:$ktor_version" }