From f26ed5275c0eb1fa5c4e09d4004d82be03b69450 Mon Sep 17 00:00:00 2001 From: Yogesh Choudhary Paliyal Date: Fri, 14 Jan 2022 23:03:51 +0530 Subject: [PATCH] Bump to v1.4.3 Run spotlessApply --- app/build.gradle | 4 ++-- .../keypass/ui/auth/AuthenticationActivity.kt | 10 +++++----- fastlane/metadata/android/en-US/changelogs/1403.txt | 1 + whatsnew/whatsnew-en-US | 3 +-- 4 files changed, 9 insertions(+), 9 deletions(-) create mode 100644 fastlane/metadata/android/en-US/changelogs/1403.txt diff --git a/app/build.gradle b/app/build.gradle index 091766d1..b193cd4c 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -20,8 +20,8 @@ android { applicationId appPackageId minSdkVersion 22 targetSdkVersion 31 - versionCode 1402 - versionName "1.4.2" + versionCode 1403 + versionName "1.4.3" testInstrumentationRunner "com.yogeshpaliyal.keypass.CustomTestRunner" } diff --git a/app/src/main/java/com/yogeshpaliyal/keypass/ui/auth/AuthenticationActivity.kt b/app/src/main/java/com/yogeshpaliyal/keypass/ui/auth/AuthenticationActivity.kt index 608cc8d9..6bc66c8d 100644 --- a/app/src/main/java/com/yogeshpaliyal/keypass/ui/auth/AuthenticationActivity.kt +++ b/app/src/main/java/com/yogeshpaliyal/keypass/ui/auth/AuthenticationActivity.kt @@ -30,7 +30,6 @@ class AuthenticationActivity : AppCompatActivity() { BiometricManager.from(this) } - override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) binding = ActivityAuthenticationBinding.inflate(layoutInflater) @@ -97,9 +96,11 @@ class AuthenticationActivity : AppCompatActivity() { Log.e("MY_APP_TAG", "$canAuthentication Biometric features are currently unavailable.") // Prompts the user to create credentials that your app accepts. if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.R) { - val enrollIntent = Intent(Settings.ACTION_BIOMETRIC_ENROLL).apply { - putExtra(Settings.EXTRA_BIOMETRIC_AUTHENTICATORS_ALLOWED, - BIOMETRIC_STRONG or DEVICE_CREDENTIAL) + val enrollIntent = Intent(Settings.ACTION_BIOMETRIC_ENROLL).apply { + putExtra( + Settings.EXTRA_BIOMETRIC_AUTHENTICATORS_ALLOWED, + BIOMETRIC_STRONG or DEVICE_CREDENTIAL + ) } startActivityForResult(enrollIntent, 707) } else { @@ -111,7 +112,6 @@ class AuthenticationActivity : AppCompatActivity() { } } } - } } diff --git a/fastlane/metadata/android/en-US/changelogs/1403.txt b/fastlane/metadata/android/en-US/changelogs/1403.txt new file mode 100644 index 00000000..f0c96cfb --- /dev/null +++ b/fastlane/metadata/android/en-US/changelogs/1403.txt @@ -0,0 +1 @@ +UX improvements \ No newline at end of file diff --git a/whatsnew/whatsnew-en-US b/whatsnew/whatsnew-en-US index 311b5934..f0c96cfb 100644 --- a/whatsnew/whatsnew-en-US +++ b/whatsnew/whatsnew-en-US @@ -1,2 +1 @@ -Custom Crash screen -Bug Fixes and improvements \ No newline at end of file +UX improvements \ No newline at end of file