mirror of
https://github.com/yogeshpaliyal/KeyPass.git
synced 2026-01-08 09:09:33 -06:00
Bump to v1.4.3
Run spotlessApply
This commit is contained in:
@@ -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"
|
||||
}
|
||||
|
||||
@@ -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() {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
1
fastlane/metadata/android/en-US/changelogs/1403.txt
Normal file
1
fastlane/metadata/android/en-US/changelogs/1403.txt
Normal file
@@ -0,0 +1 @@
|
||||
UX improvements
|
||||
@@ -1,2 +1 @@
|
||||
Custom Crash screen
|
||||
Bug Fixes and improvements
|
||||
UX improvements
|
||||
Reference in New Issue
Block a user