build: compile against SDK 30 and resolve deprecations
Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
This commit is contained in:
parent
18b6e93bb5
commit
cff8d41c91
6 changed files with 16 additions and 8 deletions
|
@ -7,6 +7,7 @@ package com.zeapo.pwdstore
|
||||||
import android.content.Intent
|
import android.content.Intent
|
||||||
import android.os.Bundle
|
import android.os.Bundle
|
||||||
import android.os.Handler
|
import android.os.Handler
|
||||||
|
import android.os.Looper
|
||||||
import androidx.appcompat.app.AppCompatActivity
|
import androidx.appcompat.app.AppCompatActivity
|
||||||
import androidx.core.content.edit
|
import androidx.core.content.edit
|
||||||
import com.zeapo.pwdstore.crypto.DecryptActivity
|
import com.zeapo.pwdstore.crypto.DecryptActivity
|
||||||
|
@ -51,7 +52,7 @@ class LaunchActivity : AppCompatActivity() {
|
||||||
Intent(this, PasswordStore::class.java)
|
Intent(this, PasswordStore::class.java)
|
||||||
startActivity(intentToStart)
|
startActivity(intentToStart)
|
||||||
|
|
||||||
Handler().postDelayed({ finish() }, if (noAuth) 0L else 500L)
|
Handler(Looper.getMainLooper()).postDelayed({ finish() }, if (noAuth) 0L else 500L)
|
||||||
}
|
}
|
||||||
|
|
||||||
companion object {
|
companion object {
|
||||||
|
|
|
@ -45,12 +45,12 @@ open class BasePgpActivity : AppCompatActivity(), OpenPgpServiceConnection.OnBou
|
||||||
/**
|
/**
|
||||||
* Full path to the repository
|
* Full path to the repository
|
||||||
*/
|
*/
|
||||||
val repoPath: String by lazy(LazyThreadSafetyMode.NONE) { intent.getStringExtra("REPO_PATH") }
|
val repoPath by lazy(LazyThreadSafetyMode.NONE) { intent.getStringExtra("REPO_PATH")!! }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Full path to the password file being worked on
|
* Full path to the password file being worked on
|
||||||
*/
|
*/
|
||||||
val fullPath: String by lazy(LazyThreadSafetyMode.NONE) { intent.getStringExtra("FILE_PATH") }
|
val fullPath by lazy(LazyThreadSafetyMode.NONE) { intent.getStringExtra("FILE_PATH")!! }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Name of the password file
|
* Name of the password file
|
||||||
|
@ -186,7 +186,7 @@ open class BasePgpActivity : AppCompatActivity(), OpenPgpServiceConnection.OnBou
|
||||||
*/
|
*/
|
||||||
fun getUserInteractionRequestIntent(result: Intent): IntentSender {
|
fun getUserInteractionRequestIntent(result: Intent): IntentSender {
|
||||||
i { "RESULT_CODE_USER_INTERACTION_REQUIRED" }
|
i { "RESULT_CODE_USER_INTERACTION_REQUIRED" }
|
||||||
return (result.getParcelableExtra(OpenPgpApi.RESULT_INTENT) as PendingIntent).intentSender
|
return result.getParcelableExtra<PendingIntent>(OpenPgpApi.RESULT_INTENT)!!.intentSender
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -7,6 +7,7 @@ package com.zeapo.pwdstore.git
|
||||||
import android.content.Intent
|
import android.content.Intent
|
||||||
import android.os.Bundle
|
import android.os.Bundle
|
||||||
import android.os.Handler
|
import android.os.Handler
|
||||||
|
import android.os.Looper
|
||||||
import android.util.Patterns
|
import android.util.Patterns
|
||||||
import android.view.MenuItem
|
import android.view.MenuItem
|
||||||
import androidx.core.os.postDelayed
|
import androidx.core.os.postDelayed
|
||||||
|
@ -55,7 +56,7 @@ class GitConfigActivity : BaseGitActivity() {
|
||||||
GitSettings.authorEmail = email
|
GitSettings.authorEmail = email
|
||||||
GitSettings.authorName = name
|
GitSettings.authorName = name
|
||||||
Snackbar.make(binding.root, getString(R.string.git_server_config_save_success), Snackbar.LENGTH_SHORT).show()
|
Snackbar.make(binding.root, getString(R.string.git_server_config_save_success), Snackbar.LENGTH_SHORT).show()
|
||||||
Handler().postDelayed(500) { finish() }
|
Handler(Looper.getMainLooper()).postDelayed(500) { finish() }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -8,6 +8,7 @@ import android.content.Context
|
||||||
import android.content.Intent
|
import android.content.Intent
|
||||||
import android.os.Bundle
|
import android.os.Bundle
|
||||||
import android.os.Handler
|
import android.os.Handler
|
||||||
|
import android.os.Looper
|
||||||
import android.view.MenuItem
|
import android.view.MenuItem
|
||||||
import android.view.View
|
import android.view.View
|
||||||
import androidx.core.os.postDelayed
|
import androidx.core.os.postDelayed
|
||||||
|
@ -144,7 +145,7 @@ class GitServerConfigActivity : BaseGitActivity() {
|
||||||
PasswordRepository.initialize()
|
PasswordRepository.initialize()
|
||||||
if (!isClone) {
|
if (!isClone) {
|
||||||
Snackbar.make(binding.root, getString(R.string.git_server_config_save_success), Snackbar.LENGTH_SHORT).show()
|
Snackbar.make(binding.root, getString(R.string.git_server_config_save_success), Snackbar.LENGTH_SHORT).show()
|
||||||
Handler().postDelayed(500) { finish() }
|
Handler(Looper.getMainLooper()).postDelayed(500) { finish() }
|
||||||
} else {
|
} else {
|
||||||
cloneRepository()
|
cloneRepository()
|
||||||
}
|
}
|
||||||
|
|
|
@ -262,8 +262,13 @@ object SshKey {
|
||||||
apply(algorithm.applyToSpec)
|
apply(algorithm.applyToSpec)
|
||||||
if (requireAuthentication) {
|
if (requireAuthentication) {
|
||||||
setUserAuthenticationRequired(true)
|
setUserAuthenticationRequired(true)
|
||||||
|
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.R) {
|
||||||
|
setUserAuthenticationParameters(30, KeyProperties.AUTH_DEVICE_CREDENTIAL)
|
||||||
|
} else {
|
||||||
|
@Suppress("DEPRECATION")
|
||||||
setUserAuthenticationValidityDurationSeconds(30)
|
setUserAuthenticationValidityDurationSeconds(30)
|
||||||
}
|
}
|
||||||
|
}
|
||||||
build()
|
build()
|
||||||
}
|
}
|
||||||
val keyPair = KeyPairGenerator.getInstance(algorithm.algorithm, PROVIDER_ANDROID_KEY_STORE).run {
|
val keyPair = KeyPairGenerator.getInstance(algorithm.algorithm, PROVIDER_ANDROID_KEY_STORE).run {
|
||||||
|
|
|
@ -60,7 +60,7 @@ internal fun Project.configureForAllProjects() {
|
||||||
*/
|
*/
|
||||||
@Suppress("UnstableApiUsage")
|
@Suppress("UnstableApiUsage")
|
||||||
internal fun TestedExtension.configureCommonAndroidOptions() {
|
internal fun TestedExtension.configureCommonAndroidOptions() {
|
||||||
compileSdkVersion(29)
|
compileSdkVersion(30)
|
||||||
|
|
||||||
defaultConfig {
|
defaultConfig {
|
||||||
minSdkVersion(23)
|
minSdkVersion(23)
|
||||||
|
|
Loading…
Reference in a new issue