Expand my Community achievements bar.

Join us on September 25th for a must-attend webinar featuring Adobe Experience Maker winner Anish Raul. Discover how leading enterprises are adopting AI into their workflows securely, responsibly, and at scale.

Mobile SDK implementation help

Avatar

Level 2

We are doing a fresh Mobile SDK implementation for IOS and Android.

I am following the steps here but feel like something is missing (https://experienceleague.adobe.com/en/docs/platform-learn/implement-mobile-sdk/overview)

Is anyone aware of any tutorials, additional documentation, videos, or helpful tips for this?

10 Replies

Avatar

Moderator

What are you getting stuck on?

Avatar

Level 3

I have added the dependency code in build.gradle file, and I was stuck on adding the Initialization code into the app.

Avatar

Level 5

@BertBru  try to add edge datastream Id manually in your app.

example:

Map<String, Object> config = new HashMap<>();
config.put("edge.configId", " Add config Id");
MobileCore.updateConfiguration(config);

 

Thanks

AJODev

Avatar

Level 3

Sure will try this method. But where to get the config Id

Avatar

Level 5

Hello @PadmajaS ,

 

Follow this documentation : https://developer.adobe.com/client-sdks/home/

 

Thanks

AJODev

Avatar

Adobe Champion

The documentation for mobile tracking can be a bit spread out. You linked to a tutorial, but https://developer.adobe.com/client-sdks/home/getting-started/get-the-sdk/ has some other details (and if you're on React Native, there's a whole different set of docs to keep in mind). 

Avatar

Level 3

Hi @Jennifer_Kunz ,

 

Can you share the mobile SDK documentation for React Native apps?

Avatar

Level 5

Avatar

Level 3

Hi @AJODev ,

 

I have cloned the repo that you shared. I have doubts about where to add the initialization code in the cloned project

Avatar

Level 5

Hi @PadmajaS ,

Add Initialization code in app.tsx file.

 

Thanks

AJODev