Bump to v1.4.3

Run spotlessApply
This commit is contained in:
Yogesh Choudhary Paliyal
2022-01-14 23:03:51 +05:30
parent ad38bdf071
commit f26ed5275c
4 changed files with 9 additions and 9 deletions

View File

@@ -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"
}

View File

@@ -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() {
}
}
}
}
}

View File

@@ -0,0 +1 @@
UX improvements

View File

@@ -1,2 +1 @@
Custom Crash screen
Bug Fixes and improvements
UX improvements