From 0c05abb21fbed527690e8cb05d1eedf9668ae972 Mon Sep 17 00:00:00 2001 From: Tom van Dijk <18gatenmaker6@gmail.com> Date: Tue, 14 Jan 2025 18:24:14 +0100 Subject: [PATCH] feat(readerdictionary): add ability to use kiwix standalone (#13060) Problem: when you install Kiwix from FDroid or as a standalone apk (ergo not via the Play Store) it installs as `org.kiwix.kiwixmobile.standalone`, which before this commit isn't supported. This commit simply just adds it as a seperate option :) --- frontend/device/android/device.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/device/android/device.lua b/frontend/device/android/device.lua index 5f49892fa..9361baba0 100644 --- a/frontend/device/android/device.lua +++ b/frontend/device/android/device.lua @@ -59,6 +59,7 @@ local external = require("device/thirdparty"):new{ { "GoldenFree", "GoldenDict Free", false, "mobi.goldendict.android.free", "send" }, { "GoldenPro", "GoldenDict Pro", false, "mobi.goldendict.android", "send" }, { "Kiwix", "Kiwix", false, "org.kiwix.kiwixmobile", "text" }, + { "KiwixStandalone", "Kiwix (F-Droid)", false, "org.kiwix.kiwixmobile.standalone", "text" }, { "LookUp", "Look Up", false, "gaurav.lookup", "send" }, { "LookUpPro", "Look Up Pro", false, "gaurav.lookuppro", "send" }, { "Mdict", "Mdict", false, "cn.mdict", "send" },