elevensdk_flutter_plugin 0.1.0
elevensdk_flutter_plugin: ^0.1.0 copied to clipboard
flutter plugin for the 11sight sdk
elevensdk_flutter_plugin #
Elevensight sdk flutter plugin
Getting Started #
The plugin serves as a wrapper for the iOS and Android SDKs, on top of which a Flutter API was created with functionality similar to those found in native APIs.
The plugin is available on pub.dev under the elevensdk_flutter_plugin name. Discover it there, follow the instructions, and you’ll be able to utilize the API to the fullest extent.
Installation #
Add dependency Add the dependency from command-line
$ flutter pub add elevensdk_flutter_plugin
The command above will add this to the pubspec.yaml file in your project (you can do this manually): dependencies: elevensdk_flutter_plugin: ^0.1.0
Please refer to the "example" directory for a working example of this plugin.
Minimum API level 26 is required for android.
Need to add maven path like example\android\build.gradle
maven {
url "https://vinaytestframe.jfrog.io/artifactory/eleven-libs-release-local/"
credentials {
username 'username'
password 'password'
}
}
and the 11sight sdk dependency like example\android\app\build.gradle
implementation('com:elevensightsdk:1.0.0@aar')