From 3c78bc096eb2e3848a7dd4e81caa465006fb4d9b Mon Sep 17 00:00:00 2001 From: Libor Polčák Date: Oct 12 2023 06:33:37 +0000 Subject: Change manifest.json of Firefox to support signing for Android on AMO See https://blog.mozilla.org/addons/2023/10/05/changes-to-android-extension-signing/ We needed to add gecko_android key to manifest.json of Firefox, which in turn requires to increase the minimal supported version. The Firefox version is based on https://addons.mozilla.org/api/v5/applications/firefox/ See https://lists.nongnu.org/archive/html/js-shield/2023-10/msg00002.html for further information. --- diff --git a/firefox/manifest.json b/firefox/manifest.json index dd36d41..1cec8b5 100644 --- a/firefox/manifest.json +++ b/firefox/manifest.json @@ -95,7 +95,8 @@ "browser_specific_settings": { "gecko": { "id": "jsr@javascriptrestrictor", - "strict_min_version": "68.0" - } + "strict_min_version": "78.*" + }, + "gecko_android": {} } }