From: csagan5 <32685696+csagan5@users.noreply.github.com> Date: Sat, 11 Jul 2020 15:00:13 +0200 Subject: do not add suffix to package name License: GPL-3.0-only - https://spdx.org/licenses/GPL-3.0-only.html --- chrome/android/chrome_public_apk_tmpl.gni | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chrome/android/chrome_public_apk_tmpl.gni b/chrome/android/chrome_public_apk_tmpl.gni --- a/chrome/android/chrome_public_apk_tmpl.gni +++ b/chrome/android/chrome_public_apk_tmpl.gni @@ -29,7 +29,7 @@ declare_args() { chrome_public_manifest_package = "org.chromium.chrome" if (use_stable_package_name_for_trichrome) { chrome_public_manifest_package += ".stable" - } else if (android_channel != "default") { + } else if (android_channel != "default" && android_channel != "stable") { chrome_public_manifest_package += "." + android_channel } } -- 2.25.1