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.
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: ">= 2.0.0"
flutter_acpuserprofile: ">= 2.0.0"
Then fetch the packages with:
flutter pub get
Run:
flutter test
import '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