michael@0: MOZ_ANDROID_SHARED_ID = $(ANDROID_PACKAGE_NAME).sharedID michael@0: # Android Sync Account types are not per-package: release and beta michael@0: # share an Account type, and aurora and nightly share an Account type. michael@0: MOZ_ANDROID_SHARED_ACCOUNT_TYPE = $(ANDROID_PACKAGE_NAME)_sync michael@0: # Firefox Accounts Account types are per-package. michael@0: MOZ_ANDROID_SHARED_FXACCOUNT_TYPE = $(ANDROID_PACKAGE_NAME)_fxaccount michael@0: michael@0: # We released these builds to the public with shared IDs and need to michael@0: # keep them consistent. michael@0: ifeq (org.mozilla.firefox,$(ANDROID_PACKAGE_NAME)) michael@0: MOZ_ANDROID_SHARED_ID = org.mozilla.firefox.sharedID michael@0: MOZ_ANDROID_SHARED_ACCOUNT_TYPE = org.mozilla.firefox_sync michael@0: else ifeq (org.mozilla.firefox_beta,$(ANDROID_PACKAGE_NAME)) michael@0: MOZ_ANDROID_SHARED_ID = org.mozilla.firefox.sharedID michael@0: MOZ_ANDROID_SHARED_ACCOUNT_TYPE = org.mozilla.firefox_sync michael@0: else ifeq (org.mozilla.fennec_aurora,$(ANDROID_PACKAGE_NAME)) michael@0: MOZ_ANDROID_SHARED_ID = org.mozilla.fennec.sharedID michael@0: MOZ_ANDROID_SHARED_ACCOUNT_TYPE = org.mozilla.fennec_sync michael@0: else ifeq (org.mozilla.fennec,$(ANDROID_PACKAGE_NAME)) michael@0: MOZ_ANDROID_SHARED_ID = org.mozilla.fennec.sharedID michael@0: MOZ_ANDROID_SHARED_ACCOUNT_TYPE = org.mozilla.fennec_sync michael@0: endif