flutter_acpuserprofile is a flutter plugin for the iOS and Android AEP UserProfile SDK to allow for integration with flutter applications. Functionality to enable the UserProfile extension is provided entirely through Dart documented below.
Add flutter_acpcore and flutter_acpuserprofile to your dependencies in pubspec.yaml
dependencies:
flutter_acpcore: ">= 1.0.0"
flutter_acpuserprofile: ">= 1.0.1"Then fetch the packages with:
flutter pub getRun:
flutter testimport 'package:flutter_acpuserprofile/flutter_acpuserprofile.dart';String version = FlutterACPUserProfile.extensionVersion;Note: It is required to initialize the SDK via native code inside your AppDelegate and MainApplication for iOS and Android respectively. For more information see how to initialize Core.
#import "ACPUserProfile.h"
[ACPUserProfile registerExtension];import com.adobe.marketing.mobile.UserProfile;
UserProfile.registerExtension();String userAttributes;
try {
trackingId = await FlutterACPUserProfile.getUserAttributes(["attrNameTest", "mapKey"]);
} on PlatformException {
log("Failed to get the user attributes");
}FlutterACPUserProfile.removeUserAttribute("attrNameTest");FlutterACPUserProfile.removeUserAttributes(["attrNameTest", "mapKey"]);FlutterACPUserProfile.updateUserAttribute("attrNameTest", "attrValueTest"),FlutterACPUserProfile.updateUserAttributes({"mapKey": "mapValue", "mapKey1": "mapValue1"});See CONTRIBUTING
See LICENSE