Autofill: add kiwi as a supported browser (#1091)

This commit is contained in:
Rounak Datta 2020-09-10 11:24:44 +05:30 committed by GitHub
parent 276aa4ea7c
commit 71fc2a396e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 1 deletions

View file

@ -7,7 +7,7 @@ All notable changes to this project will be documented in this file.
### Added
- Allow sorting by recently used
- Add [Bromite](https://www.bromite.org/) and [Ungoogled Chromium](https://git.droidware.info/wchen342/ungoogled-chromium-android) to supported browsers list for Autofill
- Add [Bromite](https://www.bromite.org/), [Ungoogled Chromium](https://git.droidware.info/wchen342/ungoogled-chromium-android) and [Kiwi](https://kiwibrowser.com/) to supported browsers list for Autofill
- Add ability to view the Git commit log
- Allow generating ECDSA and ED25519 keys for SSH
- Add support for multiple/fallback authentication methods for SSH

View file

@ -78,6 +78,7 @@ private val TRUSTED_BROWSER_CERTIFICATE_HASH = mapOf(
"org.torproject.torbrowser" to "IAYfBF5zfGc3XBd5TP7bQ2oDzsa6y3y5+WZCIFyizsg=",
"org.ungoogled.chromium.stable" to "29UOO5cXoxO/e/hH3hOu6bbtg1My4tK6Eik2Ym5Krtk=",
"org.ungoogled.chromium.extensions.stable" to "29UOO5cXoxO/e/hH3hOu6bbtg1My4tK6Eik2Ym5Krtk=",
"com.kiwibrowser.browser" to "wGnqlmMy6R4KDDzFd+b1Cf49ndr3AVrQxcXvj9o/hig=",
)
private fun isTrustedBrowser(context: Context, appPackage: String): Boolean {
@ -168,6 +169,7 @@ private val FLAKY_BROWSERS = listOf(
"com.chrome.dev",
"org.bromite.bromite",
"org.ungoogled.chromium.stable",
"com.kiwibrowser.browser",
)
enum class BrowserAutofillSupportLevel {

View file

@ -25,4 +25,5 @@
android:name="org.mozilla.firefox_beta"
android:maxLongVersionCode="679999" />
<compatibility-package android:name="org.ungoogled.chromium.stable" />
<compatibility-package android:name="com.kiwibrowser.browser" />
</autofill-service>