From 0f872f4a6ad211cb94e61bf6ea3d6eaba7d864b4 Mon Sep 17 00:00:00 2001 From: Ritwik Shanker Date: Wed, 7 Oct 2020 09:00:00 +0530 Subject: [PATCH] App supports Android 11 now --- app/build.gradle | 22 +++++++++++----------- build.gradle | 2 +- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index a529b03..12a20e0 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -4,7 +4,7 @@ apply plugin: 'kotlin-android-extensions' apply plugin: 'kotlin-kapt' android { - compileSdkVersion 29 + compileSdkVersion 30 compileOptions { sourceCompatibility JavaVersion.VERSION_1_8 targetCompatibility JavaVersion.VERSION_1_8 @@ -15,9 +15,9 @@ android { defaultConfig { applicationId "com.gocoronago.tracker" minSdkVersion 19 - targetSdkVersion 29 + targetSdkVersion 30 versionCode 2 - versionName "2.1" + versionName "2.2" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" } @@ -35,18 +35,18 @@ dependencies { implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version" implementation 'com.airbnb.android:lottie:3.4.1' kapt "com.android.databinding:compiler:$android_plugin_version" - implementation 'androidx.core:core-ktx:1.3.1' + implementation 'androidx.core:core-ktx:1.3.2' implementation 'com.google.code.gson:gson:2.8.6' - implementation 'com.squareup.retrofit2:retrofit:2.8.1' - implementation "com.squareup.retrofit2:converter-gson:2.6.2" - implementation 'androidx.appcompat:appcompat:1.1.0' - implementation 'androidx.constraintlayout:constraintlayout:1.1.3' + implementation 'com.squareup.retrofit2:retrofit:2.9.0' + implementation "com.squareup.retrofit2:converter-gson:2.9.0" + implementation 'androidx.appcompat:appcompat:1.2.0' + implementation 'androidx.constraintlayout:constraintlayout:2.0.1' implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0' implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.2.0' - implementation 'com.google.android.material:material:1.2.0' + implementation 'com.google.android.material:material:1.2.1' testImplementation 'junit:junit:4.13' - androidTestImplementation 'androidx.test.ext:junit:1.1.1' - androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0' + androidTestImplementation 'androidx.test.ext:junit:1.1.2' + androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0' implementation 'com.github.angads25:toggle:1.1.0' } diff --git a/build.gradle b/build.gradle index c9fbadd..f9615ea 100644 --- a/build.gradle +++ b/build.gradle @@ -1,6 +1,6 @@ // Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { - ext.kotlin_version = "1.3.72" + ext.kotlin_version = "1.4.10" ext.android_plugin_version = '4.0.1' repositories { google()