flutter_acpuserprofile

pub package Build License

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.

Installation

Add flutter_acpcore and flutter_acpuserprofile to your dependencies in pubspec.yaml

dependencies:
  flutter_acpcore: ">= 2.0.0"
  flutter_acpuserprofile: ">= 2.0.0"

Then fetch the packages with:

flutter pub get

Tests

Run:xz

flutter test

Usage

UserProfile

Importing the SDK:
import 'package:flutter_acpuserprofile/flutter_acpuserprofile.dart';
Getting the SDK version:
String version = FlutterACPUserProfile.extensionVersion;
Registering the extension with ACPCore:

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.

iOS
#import "ACPUserProfile.h"

[ACPUserProfile registerExtension];
Android:
import com.adobe.marketing.mobile.UserProfile;

UserProfile.registerExtension();
Get user profile attributes which match the provided keys:
String userAttributes;

try {
trackingId = await FlutterACPUserProfile.getUserAttributes(["attrNameTest", "mapKey"]);
} on PlatformException {
log("Failed to get the user attributes");
}
Remove user profile attribute if it exists:
FlutterACPUserProfile.removeUserAttribute("attrNameTest");
Remove provided user profile attributes if they exist:
FlutterACPUserProfile.removeUserAttributes(["attrNameTest", "mapKey"]);
Set a single user profile attribute:
FlutterACPUserProfile.updateUserAttribute("attrNameTest", "attrValueTest"),
Set multiple user profile attributes:
FlutterACPUserProfile.updateUserAttributes({"mapKey": "mapValue", "mapKey1": "mapValue1"});

Contributing

See CONTRIBUTING

License

See LICENSE