Skip to content

Commit

Permalink
[PM-16870] Add support for IronFox (#4534)
Browse files Browse the repository at this point in the history
Co-authored-by: Patrick Honkonen <[email protected]>
  • Loading branch information
celenityy and SaintPatrck authored Jan 10, 2025
1 parent e63a549 commit 542d2ad
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 0 deletions.
12 changes: 12 additions & 0 deletions app/src/main/assets/fido2_privileged_community.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,18 @@
]
}
},
{
"type": "android",
"info": {
"package_name": "org.ironfoxoss.ironfox",
"signatures": [
{
"build": "release",
"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"
}
]
}
},
{
"type": "android",
"info": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,11 @@ private val ACCESSIBILITY_SUPPORTED_BROWSERS = listOf(
// 2nd = Anticipation
possibleUrlFieldIds = listOf("url_bar_title", "mozac_browser_toolbar_url_view"),
),
Browser(
packageName = "org.ironfoxoss.ironfox",
// 2nd = Legacy
possibleUrlFieldIds = listOf("mozac_browser_toolbar_url_view", "url_bar_title"),
),
Browser(packageName = "org.mozilla.fenix", urlFieldId = "mozac_browser_toolbar_url_view"),
// [DEPRECATED ENTRY]
Browser(
Expand Down
3 changes: 3 additions & 0 deletions app/src/main/res/xml/autofill_service_configuration.xml
Original file line number Diff line number Diff line change
Expand Up @@ -238,6 +238,9 @@
<compatibility-package
android:name="org.gnu.icecat"
android:maxLongVersionCode="10000000000" />
<compatibility-package
android:name="org.ironfoxoss.ironfox"
android:maxLongVersionCode="10000000000" />
<compatibility-package
android:name="org.mozilla.fenix"
android:maxLongVersionCode="10000000000" />
Expand Down

0 comments on commit 542d2ad

Please sign in to comment.