Avatar

Correct answer by
Community Advisor

No you won't be able to. What you can send is either the default aid or the marketing cloud visitor ID mid.

mid doc : Marketing Cloud Visitor ID Service Methods

getMarketingCloudId

Retrieves the Marketing Cloud visitor ID from the visitor ID service.

Important: This method can cause a blocking network call and should NOT be called from a UI thread.

default visitor ID:

getTrackingIdentifier

Returns the automatically generated visitor identifier for Analytics.

This is an app-specific unique visitor ID that is generated at the initial launch and is stored and used from that point forward. The ID is preserved between app upgrades, and when the app is uninstalled, it is removed.

Syntax:

  1. public static String getTrackingIdentifier();
https://marketing.adobe.com/resources/help/en_US/mobile/android/analytics_methods.html#wh-view-codeExample:
  1. String trackingId = Analytics.getTrackingIdentifier();

View solution in original post