Git Product home page Git Product logo

flutter-acpuserprofile's Introduction

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.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

flutter-acpuserprofile's People

Contributors

ravjain-adb avatar rymorale avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.