mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-31 22:25:30 +00:00
a2a0ca216f
This bumps every package's account type so that any issues shake out on Nightly (which otherwise would not have experienced an account type change). The trivial change to the AndroidManifest is to ensure that the new Account type is picked up by the build system, in the hopes of avoiding a clobber.
23 lines
1.1 KiB
Makefile
23 lines
1.1 KiB
Makefile
MOZ_ANDROID_SHARED_ID = $(ANDROID_PACKAGE_NAME).sharedID
|
|
# Android Sync Account types are not per-package: release and beta
|
|
# share an Account type, and aurora and nightly share an Account type.
|
|
MOZ_ANDROID_SHARED_ACCOUNT_TYPE = $(ANDROID_PACKAGE_NAME)_sync
|
|
# Firefox Accounts Account types are per-package.
|
|
MOZ_ANDROID_SHARED_FXACCOUNT_TYPE = $(ANDROID_PACKAGE_NAME)_fxaccount
|
|
|
|
# We released these builds to the public with shared IDs and need to
|
|
# keep them consistent.
|
|
ifeq (org.mozilla.firefox,$(ANDROID_PACKAGE_NAME))
|
|
MOZ_ANDROID_SHARED_ID = org.mozilla.firefox.sharedID
|
|
MOZ_ANDROID_SHARED_ACCOUNT_TYPE = org.mozilla.firefox_sync
|
|
else ifeq (org.mozilla.firefox_beta,$(ANDROID_PACKAGE_NAME))
|
|
MOZ_ANDROID_SHARED_ID = org.mozilla.firefox.sharedID
|
|
MOZ_ANDROID_SHARED_ACCOUNT_TYPE = org.mozilla.firefox_sync
|
|
else ifeq (org.mozilla.fennec_aurora,$(ANDROID_PACKAGE_NAME))
|
|
MOZ_ANDROID_SHARED_ID = org.mozilla.fennec.sharedID
|
|
MOZ_ANDROID_SHARED_ACCOUNT_TYPE = org.mozilla.fennec_sync
|
|
else ifeq (org.mozilla.fennec,$(ANDROID_PACKAGE_NAME))
|
|
MOZ_ANDROID_SHARED_ID = org.mozilla.fennec.sharedID
|
|
MOZ_ANDROID_SHARED_ACCOUNT_TYPE = org.mozilla.fennec_sync
|
|
endif
|