Hi,
Does anyone know if it's possible to set the package name differently from the one in the AndroidManifest.xml when building an APK?
Our remoting/android/java/AndroidManifest.xml has:
package="org.chromium.chromoting"
but we'd like to change this string when building the remoting APK with the GYP flag branding=Chrome
It's currently possible to set some other things like android:versionCode and android:versionName but I can't find any way to set the package string.
I notice we've defined a GYP variable called manifest_package_name in these two files:
chrome/chrome_android.gypi: 'manifest_package_name': 'org.chromium.chrome.testshell',
content/content_shell.gypi: 'manifest_package_name': 'org.chromium.content_shell_apk',
However, it appears our tooling completely ignores this variable and always uses the package name from the AndroidManifest.xml
Could someone help me figure out the best way to achieve what I'm trying to do?
Thanks, Lambros