Nice. We'll want a different name than INSTALLER_ORFOX, and I think we'll need our own f-droid repository, too. The Guardian Project run their own repo, but I don't remember the specific reasons why the main f-droid repo won't accept their apps.
I thought about disabling using a different method by excluding the updater at compile-time. Unfortunately, this results in different APKs [0]. It's conditionally included using an environment variable.
if [ -z "${TB_BUILD_WITH_UPDATER}" ]; then# Because Google Play will likely be the primary distribution medium,# we disable updating and rely on Google Play by default. The# Developer Policy explicitly prohibits in-app updating:# An app distributed via Google Play may not modify, replace, or# update itself using any method other than Google Plays update# mechanism.# https://play.google.com/about/privacy-security-deception/malicious-behavior/ ac_add_options --disable-tor-browser-update ac_add_options --disable-signmar ac_add_options --disable-verify-marfi
Nice. We'll want a different name than INSTALLER_ORFOX, and I think we'll need our own f-droid repository, too. The Guardian Project run their own repo, but I don't remember the specific reasons why the main f-droid repo won't accept their apps.
Indeed INSTALLER_ORFOX should be INSTALLER_FDROID.
I thought about disabling using a different method by excluding the updater at compile-time. Unfortunately, this results in different APKs [0]. It's conditionally included using an environment variable.
{{{
if [ -z "${TB_BUILD_WITH_UPDATER}" ]; then
Because Google Play will likely be the primary distribution medium,
we disable updating and rely on Google Play by default. The