diff --git a/docs/migration.md b/docs/migration.md index 7345126..c64f5d3 100644 --- a/docs/migration.md +++ b/docs/migration.md @@ -18,6 +18,15 @@ dependencies: Updated plugins can be found in this repository under [plugins/](https://github.com/adobe/aepsdk_flutter/tree/main/plugins/). If they are not there, they are currently not supported. +| Flutter (ACP) | Flutter (AEP) | +| :--- | :--- | +| flutter_acpcore | flutter_aepcore | +| flutter_assurance | flutter_aepassurance | +| flutter_acpuserprofile | flutter_aepuserprofile | +| flutter_acpanalytics | NA, Analytics workflows supported through [Edge Network](https://github.com/adobe/aepsdk_flutter/tree/main/plugins/flutter_aepedge) or [Edge Bridge](https://github.com/adobe/aepsdk_flutter/tree/main/plugins/flutter_aepedgebridge) extensions. | +| Place Services| NA | +| Place Monitor | NA | + ## Update SDK initialization Remove the deprecated registration code and the extensions that are not supported in AEP Flutter libraries. @@ -54,9 +63,7 @@ public class MyApplication extends FlutterApplication { - Assurance.registerExtension(); - UserProfile.registerExtension(); - Analytics.registerExtension(); -- Target.registerExtension(); - Places.registerExtension(); -- Campaign.registerExtension(); - MobileCore.start(new AdobeCallback () { - @Override - public void call(Object o) { @@ -114,8 +121,6 @@ public class MyApplication extends FlutterApplication { // [ACPLifecycle registerExtension]; // [ACPSignal registerExtension]; // [ACPAnalytics registerExtension]; - // [ACPCampaign registerExtension]; - // [ACPTarget registerExtension]; // const UIApplicationState appState = application.applicationState; // [ACPCore start:^{ diff --git a/plugins/flutter_aepcore/README.md b/plugins/flutter_aepcore/README.md index c2c9776..27a6558 100644 --- a/plugins/flutter_aepcore/README.md +++ b/plugins/flutter_aepcore/README.md @@ -130,10 +130,17 @@ MobileCore.resetIdentities() ``` ##### Track app actions + +> [!IMPORTANT] +> trackAction is supported through [Edge Bridge](https://github.com/adobe/aepsdk_flutter/tree/main/plugins/flutter_aepedgebridge) and [Edge Network](https://github.com/adobe/aepsdk_flutter/tree/main/plugins/flutter_aepedge) extensions. + ```dart MobileCore.trackAction("myAction", data: {"key1": "value1"}); ``` ##### Track app states +> [!IMPORTANT] +> trackState is supported through [Edge Bridge](https://github.com/adobe/aepsdk_flutter/tree/main/plugins/flutter_aepedgebridge) and [Edge Network](https://github.com/adobe/aepsdk_flutter/tree/main/plugins/flutter_aepedge) extensions. + ```dart MobileCore.trackState("myState", data: {"key1": "value1"}); ```