diff options
4 files changed, 2 insertions, 5 deletions
diff --git a/app/src/main/java/app/passwordstore/util/extensions/AndroidExtensions.kt b/app/src/main/java/app/passwordstore/util/extensions/AndroidExtensions.kt index 69a2d9db..70dfaac1 100644 --- a/app/src/main/java/app/passwordstore/util/extensions/AndroidExtensions.kt +++ b/app/src/main/java/app/passwordstore/util/extensions/AndroidExtensions.kt @@ -142,7 +142,7 @@ fun PackageManager.getPackageInfoCompat(packageName: String, flags: Int): Packag return if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.TIRAMISU) { getPackageInfo(packageName, PackageInfoFlags.of(flags.toLong())) } else { - @Suppress("DEPRECATION") getPackageInfo(packageName, flags) + getPackageInfo(packageName, flags) } } @@ -150,7 +150,7 @@ fun PackageManager.getApplicationInfoCompat(packageName: String, flags: Int): Ap return if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.TIRAMISU) { getApplicationInfo(packageName, ApplicationInfoFlags.of(flags.toLong())) } else { - @Suppress("DEPRECATION") getApplicationInfo(packageName, flags) + getApplicationInfo(packageName, flags) } } diff --git a/autofill-parser/src/main/java/com/github/androidpasswordstore/autofillparser/AutofillFormParser.kt b/autofill-parser/src/main/java/com/github/androidpasswordstore/autofillparser/AutofillFormParser.kt index 49c3b4c9..6a8e16f3 100644 --- a/autofill-parser/src/main/java/com/github/androidpasswordstore/autofillparser/AutofillFormParser.kt +++ b/autofill-parser/src/main/java/com/github/androidpasswordstore/autofillparser/AutofillFormParser.kt @@ -50,7 +50,6 @@ public sealed class FormOrigin(public open val identifier: String) { ApplicationInfoFlags.of(PackageManager.GET_META_DATA.toLong()) ) } else { - @Suppress("DEPRECATION") context.packageManager.getApplicationInfo(identifier, PackageManager.GET_META_DATA) } val label = context.packageManager.getApplicationLabel(info) diff --git a/autofill-parser/src/main/java/com/github/androidpasswordstore/autofillparser/AutofillHelper.kt b/autofill-parser/src/main/java/com/github/androidpasswordstore/autofillparser/AutofillHelper.kt index dbdfad17..b12fd9c1 100644 --- a/autofill-parser/src/main/java/com/github/androidpasswordstore/autofillparser/AutofillHelper.kt +++ b/autofill-parser/src/main/java/com/github/androidpasswordstore/autofillparser/AutofillHelper.kt @@ -60,7 +60,6 @@ public fun computeCertificatesHash(context: Context, appPackage: String): String PackageManager.PackageInfoFlags.of(PackageManager.GET_SIGNING_CERTIFICATES.toLong()) ) } else { - @Suppress("DEPRECATION") context.packageManager.getPackageInfo(appPackage, PackageManager.GET_SIGNING_CERTIFICATES) } val signaturesNew = 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 dbf165d4..9e28808e 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 @@ -254,7 +254,6 @@ public fun getInstalledBrowsersWithAutofillSupportLevel( ResolveInfoFlags.of(PackageManager.MATCH_ALL.toLong()) ) } else { - @Suppress("DEPRECATION") context.packageManager.queryIntentActivities(testWebIntent, PackageManager.MATCH_ALL) } return installedBrowsers |