Skip to content
This repository was archived by the owner on Oct 15, 2024. It is now read-only.

Commit 71fc2a3

Browse files
author
Rounak Datta
authored
Autofill: add kiwi as a supported browser (#1091)
1 parent 276aa4e commit 71fc2a3

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ All notable changes to this project will be documented in this file.
77
### Added
88

99
- Allow sorting by recently used
10-
- Add [Bromite](https://www.bromite.org/) and [Ungoogled Chromium](https://git.droidware.info/wchen342/ungoogled-chromium-android) to supported browsers list for Autofill
10+
- 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
1111
- Add ability to view the Git commit log
1212
- Allow generating ECDSA and ED25519 keys for SSH
1313
- Add support for multiple/fallback authentication methods for SSH

app/src/main/java/com/zeapo/pwdstore/autofill/oreo/FeatureAndTrustDetection.kt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@ private val TRUSTED_BROWSER_CERTIFICATE_HASH = mapOf(
7878
"org.torproject.torbrowser" to "IAYfBF5zfGc3XBd5TP7bQ2oDzsa6y3y5+WZCIFyizsg=",
7979
"org.ungoogled.chromium.stable" to "29UOO5cXoxO/e/hH3hOu6bbtg1My4tK6Eik2Ym5Krtk=",
8080
"org.ungoogled.chromium.extensions.stable" to "29UOO5cXoxO/e/hH3hOu6bbtg1My4tK6Eik2Ym5Krtk=",
81+
"com.kiwibrowser.browser" to "wGnqlmMy6R4KDDzFd+b1Cf49ndr3AVrQxcXvj9o/hig=",
8182
)
8283

8384
private fun isTrustedBrowser(context: Context, appPackage: String): Boolean {
@@ -168,6 +169,7 @@ private val FLAKY_BROWSERS = listOf(
168169
"com.chrome.dev",
169170
"org.bromite.bromite",
170171
"org.ungoogled.chromium.stable",
172+
"com.kiwibrowser.browser",
171173
)
172174

173175
enum class BrowserAutofillSupportLevel {

app/src/main/res/xml/oreo_autofill_service.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,5 @@
2525
android:name="org.mozilla.firefox_beta"
2626
android:maxLongVersionCode="679999" />
2727
<compatibility-package android:name="org.ungoogled.chromium.stable" />
28+
<compatibility-package android:name="com.kiwibrowser.browser" />
2829
</autofill-service>

0 commit comments

Comments
 (0)