Edit in GitHubLog an issue

Frequently asked questions

What's new in the Adobe Experience Platform Mobile SDK?

There are several new features and benefits of using the Experience Platform Mobile SDK. These SDKs offer extensions to augment core SDK functionality, server-side configuration, and new Adobe Experience Cloud solution functionality. The following table highlights some of the improvements in the Experience Platform Mobile SDK:

Core featuresExperience Platform SDK4x SDK
Server-side, dynamic configuration
✔️
Programmatic configuration
✔️
✔️
Configuration UI
Partner SDK extensions
✔️
Lifecycle metrics
✔️
✔️
GET/POST postbacks
✔️
✔️
Rules & Data Elements
✔️
SolutionExperience Platform SDK4x SDK
Adobe Analytics
✔️
✔️
Adobe Analytics - Media Analytics
✔️
✔️
Adobe Audience Manager
✔️
✔️
Adobe Campaign Classic
✔️
Adobe Campaign Standard
Push and in-app messaging
Push only
Adobe Target
✔️
✔️
Places Service
✔️
Adobe Experience Platform Assurance
✔️

Do I need additional permissions to create a mobile property in the Data Collection UI?

If you need access to the Data Collection UI, see the user permissions document. If you create a web property, you can also create a mobile property. If you do not see the option to create a mobile property, turn off your ad blocker, and refresh the page.

Should I create one property per app or multiple properties per app platform?

If your apps send data to the same Adobe Analytics report suites, use the same extensions, rules, and data elements. You should group all of these mobile apps into the same property. If your apps send data to different Adobe Analytics report suites or user different extensions per app, create separate mobile properties. If you group your mobile apps into one property, you can also split them into separate properties over time.

How do I delete a mobile property in the Data Collection UI?

To delete a mobile property in the Data Collection UI, please read the delete a property tutorial.

Can I safely upgrade extensions within a mobile property in the Data Collection UI for published apps?

Yes, you can safely upgrade extensions within the mobile property. All changes are designed to be backward compatible and will only take effect in your app after you republish the mobile property.

Additionally, the installation instructions in the mobile property will be refreshed to include the latest versions of mobile platform extensions. These instructions are primarily necessary during the development phase and will be updated even before the property is published.

General implementation and migration

Where can I download the SDK?

The Experience Platform SDK is available through Cocoapods and Gradle, and Github. For more information, please read the get the SDK tutorial.

Can I use both the 4x SDK and the new Experience Platform SDK at the same time?

Implementing the two SDKs in your app is not supported.

The Experience Platform SDK migrates the locally stored user contexts from the 4x SDKs. Using both SDKs will cause severe data quality issues. For more information, please read the upgrade to the Experience Platform SDKs tutorial.

What platforms are supported?

For a complete list of supported platforms, please read the latest SDK versions document.

What OS and platform versions are supported?

  • Android versions 4.4 or later (API levels 19 or later)
  • iOS versions 10 or later
  • React Native versions 0.60.0 or later
  • Flutter versions 2.0.0 or later

Where does the SDK store identities and preferences on the app?

The SDK uses the cache and shared preferences at these locations:

Copied to your clipboard
data/data/your.app.package/cache
data/data/your.app.package/shared_prefs

What is the size of the SDK?

Adobe Experience Platform SDKs

ExtensioniOS (KB)Android (KB)Additional Dependencies†
Core
925
497
Android only: kotlin-stdlib
Identity
136
51
Lifecycle
150
59
Signal
18
33
Edge Network extension
253
99
Identity for Edge Network
Consent for Edge Network
33
25
Edge Network extension
Identity for Edge Network
69
49
Analytics
133
95
Assurance
917
527
Android only: androidx.constraintlayout
Audience
82
44
Identity
Campaign
166
80
Identity
Campaign Classic
34
42
Identity
Edge Bridge
0.84
6
Media
283
137
Messaging
33
77
Edge Network extension
Optimize
88
80
Edge Network extension
Places
799
59
Target
283
99
User Profile
18
29

The sizes in the table are provided for estimation purposes only, with the following considerations:

  • †Mobile Core, which includes the Rules Engine and Services extensions, is required for all other extensions. The final app size increase can be calculated by adding the Mobile Core size to each of the enabled extensions.
    • For example, the iOS app distribution using the Target and Analytics extensions will have a total size increase of 1341 KB. (Core: 925 KB + Analytics: 133 KB + Target: 283 KB).
  • The iOS size estimates are based on Google's CocoaPods Size Measurement tool.
  • The Android size estimates listed refer to unsigned apps and do not account for applying ProGuard.
  • For Android Mobile SDKs, the full list of dependencies for each SDK and version can be found at Maven Repository.

How can I use ProGuard with the Android SDK?

Android developer documentation recommends that you should enable shrinking to remove unused code and resources in your release build to make your APK file as small as possible. For more information, please read the shrink, obfuscate, and optimize your app tutorial. Shrinking is accomplished by using ProGuard. The Experience Platform Mobile SDK for Android comes with default ProGuard rules that are included in the Core AAR package (see proguard.txt). You should use this default package when you implement.

Add the following rule to your custom ProGuard rules file, typically labeled proguard-rules.pro. For more information, please read the shrink, obfuscate, and optimize your app tutorial.

Copied to your clipboard
-keep class com.adobe.marketing.mobile.* {
<init>(...);
}

How can I track user engagement of push notifications using the Experience Platform Mobile SDK?

Implementing push notification tracking and measurement with the SDK depends on the Experience Cloud solution being used.

Migrating to Android Mobile Core 2.x and compatible extensions

See the frequently asked questions for migration here.

Lifecycle

What are Lifecycle metrics?

Lifecycle metrics are out-of-the-box metrics that are automatically collected when the SDK is first implemented in your app. For more information, please read the documentation on Lifecycle metrics.

Adobe Analytics

See the frequently asked questions for Analytics.

Adobe Experience Platform Edge Network

Does the Edge Network extension support offline tracking?

Yes, offline tracking is supported by default when sending XDM Experience events since these events have a required timestamp, and there is no separate setting for this as it used to be in the Adobe Analytics extension. The events are backed up in the persistence layer and then sent to the Edge Network in current session if possible, or queued until the next session when a network connection is available.

Using Experience Platform Swift SDKs with tvOS

'X' is unavailable in application extension for tvOS

You may encounter this error when using the Experience Platform SDK for a tvOS app target, with the following message "'X' is unavailable in application extension for tvOS". This behavior is unexpected for tvOS targets and it seems to be an issue in Xcode where it applies additional checks for tvOSApplicationExtension API compatibility. Until this issue is resolved in the future Xcode versions, a workaround is to mark the classes or functions with the attribute: @available(tvOSApplicationExtension, unavailable) to suppress the error as in the examples below:

Example

Copied to your clipboard
@available(tvOSApplicationExtension, unavailable)
class ErrorThrowingClass {
...
}
Copied to your clipboard
@available(tvOSApplicationExtension, unavailable)
func errorThrowingFunction() {
...
}

Get help

  • Privacy
  • Terms of Use
  • Do not sell or share my personal information
  • AdChoices
Copyright © 2024 Adobe. All rights reserved.