From 493e86902277d9e8b7996308aa589013b4418dd6 Mon Sep 17 00:00:00 2001 From: Harsh Shandilya Date: Thu, 21 Apr 2022 23:34:14 +0530 Subject: Remove support for external storage and raise target SDK to 31 (#1863) --- .../androidpasswordstore/autofillparser/FeatureAndTrustDetection.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'autofill-parser') diff --git a/autofill-parser/src/main/java/com/github/androidpasswordstore/autofillparser/FeatureAndTrustDetection.kt b/autofill-parser/src/main/java/com/github/androidpasswordstore/autofillparser/FeatureAndTrustDetection.kt index bd84746b..849113cf 100644 --- a/autofill-parser/src/main/java/com/github/androidpasswordstore/autofillparser/FeatureAndTrustDetection.kt +++ b/autofill-parser/src/main/java/com/github/androidpasswordstore/autofillparser/FeatureAndTrustDetection.kt @@ -244,7 +244,7 @@ private fun getBrowserAutofillSupportLevel( public fun getInstalledBrowsersWithAutofillSupportLevel( context: Context ): List> { - val testWebIntent = Intent(Intent.ACTION_VIEW).apply { data = Uri.parse("http://example.org") } + val testWebIntent = Intent(Intent.ACTION_VIEW).apply { data = Uri.parse("https://example.org") } val installedBrowsers = context.packageManager.queryIntentActivities(testWebIntent, PackageManager.MATCH_ALL) return installedBrowsers -- cgit v1.2.3