Bump SDK version to 33 (#251)

* bump

* minor improvemnts
This commit is contained in:
Yogesh Choudhary Paliyal
2022-11-07 14:12:51 +05:30
committed by GitHub
parent ce6e1e527e
commit fbc4dbde11
4 changed files with 8 additions and 8 deletions

View File

@@ -13,12 +13,12 @@ def appPackageId = 'com.yogeshpaliyal.keypass'
android {
compileSdkVersion 32
compileSdkVersion 33
defaultConfig {
applicationId appPackageId
minSdkVersion 22
targetSdkVersion 32
targetSdkVersion 33
versionCode 1407
versionName "1.4.7"

View File

@@ -185,7 +185,7 @@ class DashboardActivity :
// the fab and bottom app bar until after it's exit animation finishes.
bottomAppBar.animate().setListener(object : AnimatorListenerAdapter() {
var isCanceled = false
override fun onAnimationEnd(animation: Animator?) {
override fun onAnimationEnd(animation: Animator) {
if (isCanceled) return
// Hide the BottomAppBar to avoid it showing above the keyboard
@@ -194,7 +194,7 @@ class DashboardActivity :
btnAdd.visibility = View.INVISIBLE
}
override fun onAnimationCancel(animation: Animator?) {
override fun onAnimationCancel(animation: Animator) {
isCanceled = true
}
})

View File

@@ -7,11 +7,11 @@ plugins {
}
android {
compileSdk 32
compileSdk 33
defaultConfig {
minSdk 21
targetSdk 32
targetSdk 33
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}

View File

@@ -4,12 +4,12 @@ plugins {
}
android {
compileSdk 32
compileSdk 33
defaultConfig {
applicationId "com.yogeshpaliyal.keypasscompose"
minSdk 21
targetSdk 32
targetSdk 33
versionCode 1
versionName "1.0"