mirror of
https://github.com/android-password-store/Android-Password-Store.git
synced 2025-09-07 16:09:38 +02:00
Continue onboarding if permissions are granted prematurely (#1097)
Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
This commit is contained in:
parent
dd63358b6a
commit
f2647dfbe6
|
@ -122,6 +122,10 @@ class OnboardingActivity : AppCompatActivity() {
|
|||
externalDirectorySelectAction.launch(UserPreference.createDirectorySelectionIntent(this))
|
||||
}
|
||||
}.launch(Manifest.permission.WRITE_EXTERNAL_STORAGE)
|
||||
} else {
|
||||
// Unlikely we have storage permissions without user ever selecting a directory,
|
||||
// but let's not assume.
|
||||
externalDirectorySelectAction.launch(UserPreference.createDirectorySelectionIntent(this))
|
||||
}
|
||||
} else {
|
||||
MaterialAlertDialogBuilder(this)
|
||||
|
|
Loading…
Reference in a new issue