Skip to content
This repository was archived by the owner on Aug 28, 2023. It is now read-only.

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

License

Notifications You must be signed in to change notification settings

adobe/flutter-acpuserprofile

flutter_acpuserprofile

Notice of deprecation

Since April 25, 2023, Apple has required apps submitted to the App Store to be built with Xcode 14.1 or later. The Experience Platform Mobile SDKs and extensions outlined below were built with prior versions of Xcode and are no longer compatible with iOS and iPadOS given Apple’s current App Store requirements. Consequently, on August 31, 2023, Adobe will be deprecating support for the following Experience Platform Mobile SDKs and wrapper extensions:

After August 31, 2023, applications already submitted to the App Store that contain these SDKs and wrapper extensions will continue to operate, however, Adobe will not be providing security updates or bug fixes, and these SDKs and wrapper extensions will be provided as-is exclusive of any warranty, due to the App Store policy outlined above.

We encourage all customers to migrate to the latest Adobe Experience Platform versions of the Mobile SDK to ensure continued compatibility and support. Documentation for the latest versions of the Adobe Experience Platform Mobile SDKs can be found here. The iOS migration guide can be found here.


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:

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

About

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

Resources

License

Code of conduct

Security policy

Stars

Watchers

Forks

Packages

No packages published