Skip to content

Wrapper around the ACPUserProfile AEP library for use in flutter applications.

License

Notifications You must be signed in to change notification settings

macif-dev/flutter-acpuserprofile

 
 

Repository files navigation

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: ">= 1.0.0"
  flutter_acpuserprofile: ">= 1.0.1"

Then fetch the packages with:

flutter pub get

Tests

Run:

flutter test

Usage

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

About

Wrapper around the ACPUserProfile AEP library for use in flutter applications.

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Dart 37.5%
  • Java 28.8%
  • Objective-C 19.9%
  • Ruby 13.8%