Skip to content

Commit 542d2ad

Browse files
[PM-16870] Add support for IronFox (#4534)
Co-authored-by: Patrick Honkonen <1883101+SaintPatrck@users.noreply.github.com>
1 parent e63a549 commit 542d2ad

File tree

3 files changed

+20
-0
lines changed

3 files changed

+20
-0
lines changed

app/src/main/assets/fido2_privileged_community.json

+12
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,18 @@
3636
]
3737
}
3838
},
39+
{
40+
"type": "android",
41+
"info": {
42+
"package_name": "org.ironfoxoss.ironfox",
43+
"signatures": [
44+
{
45+
"build": "release",
46+
"cert_fingerprint_sha256": "C5:E2:91:B5:A5:71:F9:C8:CD:9A:97:99:C2:C9:4E:02:EC:97:03:94:88:93:F2:CA:75:6D:67:B9:42:04:F9:04"
47+
}
48+
]
49+
}
50+
},
3951
{
4052
"type": "android",
4153
"info": {

app/src/main/java/com/x8bit/bitwarden/data/autofill/accessibility/util/BrowserUtil.kt

+5
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,11 @@ private val ACCESSIBILITY_SUPPORTED_BROWSERS = listOf(
128128
// 2nd = Anticipation
129129
possibleUrlFieldIds = listOf("url_bar_title", "mozac_browser_toolbar_url_view"),
130130
),
131+
Browser(
132+
packageName = "org.ironfoxoss.ironfox",
133+
// 2nd = Legacy
134+
possibleUrlFieldIds = listOf("mozac_browser_toolbar_url_view", "url_bar_title"),
135+
),
131136
Browser(packageName = "org.mozilla.fenix", urlFieldId = "mozac_browser_toolbar_url_view"),
132137
// [DEPRECATED ENTRY]
133138
Browser(

app/src/main/res/xml/autofill_service_configuration.xml

+3
Original file line numberDiff line numberDiff line change
@@ -238,6 +238,9 @@
238238
<compatibility-package
239239
android:name="org.gnu.icecat"
240240
android:maxLongVersionCode="10000000000" />
241+
<compatibility-package
242+
android:name="org.ironfoxoss.ironfox"
243+
android:maxLongVersionCode="10000000000" />
241244
<compatibility-package
242245
android:name="org.mozilla.fenix"
243246
android:maxLongVersionCode="10000000000" />

0 commit comments

Comments
 (0)