mirror of
https://github.com/yogeshpaliyal/KeyPass.git
synced 2026-01-08 09:09:33 -06:00
committed by
GitHub
parent
ce6e1e527e
commit
fbc4dbde11
@@ -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"
|
||||
|
||||
|
||||
@@ -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
|
||||
}
|
||||
})
|
||||
|
||||
@@ -7,11 +7,11 @@ plugins {
|
||||
}
|
||||
|
||||
android {
|
||||
compileSdk 32
|
||||
compileSdk 33
|
||||
|
||||
defaultConfig {
|
||||
minSdk 21
|
||||
targetSdk 32
|
||||
targetSdk 33
|
||||
|
||||
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
||||
}
|
||||
|
||||
@@ -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"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user