I am using multiple Adobe Launch extensions like:
Target.registerExtension()
Analytics.registerExtension()
Identity.registerExtension()
Lifecycle.registerExtension()
Signal.registerExtension()
UserProfile.registerExtension()
When we try to use campaign extension for push messaging, I added
Campaign.registerExtension()
as well. I also added implementation:
implementation "com.adobe.marketing.mobile:campaign:1.+"
However, I am getting this log;
V/AdobeExperienceSDK: EventHub(AMSEventHub) - Registering extension 'com.adobe.module.campaign' with version 'null'
and
V/AdobeExperienceSDK: EventHub(AMSEventHub) - New shared state data for 'com.adobe.module.eventhub' at version '0':
{
"extensions" : {
"Target" : {
"version" : "1.1.6"
},
"Signal" : {
"version" : "1.0.2"
},
"Configuration" : {
"version" : "1.5.7"
},
"UserProfile" : {
"version" : "1.1.0"
},
"com.adobe.module.campaign" : {
"version" : ""
},
"Lifecycle" : {
"version" : "1.0.6"
},
"Identity" : {
"version" : "1.2.2"
},
"Analytics" : {
"version" : "1.2.6"
}
},
"version" : "1.5.7"
}
How can I fix this issue?
Solved! Go to Solution.
Topics help categorize Community content and increase your ability to discover relevant content.
Views
Replies
Total Likes
Did you also make sure to import the campaign extension in your project? I see the implementation for your cradle file and also the register call.
Make sure to match the sample on this page below. Also note that the extension version can be called using;
Campaign.extensionVersion();
https://aep-sdks.gitbook.io/docs/using-mobile-extensions/adobe-campaign-standard
Did you also make sure to import the campaign extension in your project? I see the implementation for your cradle file and also the register call.
Make sure to match the sample on this page below. Also note that the extension version can be called using;
Campaign.extensionVersion();
https://aep-sdks.gitbook.io/docs/using-mobile-extensions/adobe-campaign-standard
I also added:
Views
Replies
Total Likes
Hi @mcece01,
We have identified the cause of the null version number and it will be fixed in the next Campaign extension release. In the meantime, the Campaign extension should be fine to use in your app. As @Ivan_Mironchuk mentioned, you can retrieve the current Campaign extension version using
Campaign.extensionVersion();
Thanks,
Ryan
Views
Replies
Total Likes
Views
Replies
Total Likes