flutter_aepassurance
flutter_aepassurance
is a flutter plugin for the iOS and Android Adobe Experience Platform Assurance SDK to allow for integration with Flutter applications. Functionality to enable the Assurance extension is provided entirely through Dart documented below.
Prerequisites
The Assurance plugin has the following peer dependency, which must be installed prior to installing it:
Installation
Install instructions for this package can be found here.
Note: After you have installed the SDK, don't forget to run
pod install
in yourios
directory to link the libraries to your Xcode project.
Usage
For more detailed information on the Assurance APIs, visit the documentation here
Importing the extension:
import 'package:flutter_aepassurance/flutter_aepassurance.dart';
Initializing with SDK:
To initialize the SDK, use the following methods:
Refer to the root Readme for more information about the SDK setup.
API reference
extensionVersion
Returns the SDK version of the Assurance extension.
Syntax
static Future<String> get extensionVersion
Example
String version = await Assurance.extensionVersion;
startSession
Starting an Assurance session:
Syntax
static Future<void> startSession(String url)
Example
Assurance.startSession(url);
Tests
Run:
flutter test
Contributing
See CONTRIBUTING
License
See LICENSE