Last updated:
0 purchases
appcarry sdk
appcarry_flutter #
A Flutter plugin for AppCarry SDK.
🛠 In order for us to provide optimal support, we would kindly ask you to submit any issues to [email protected]
When submitting an issue please specify your AppCarry sign-up (account) email , your app ID , reproduction steps, logs, code snippets and any additional relevant information.
Table of content #
Getting started
Setting AppCarry options
Initializing the SDK
Guides
Supported Platforms #
Android
This plugin is built for #
Android AppCarrySDK v1.0.7
📲 Getting started #
In order to install the plugin, visit [this] page.
⚙️ AppCarryOptions #
To start using AppCarry you first need to create an instance of AppCarrySdk before using any other of our sdk functionalities.
AppCarrySdk receives a map or AppCarryOptions object. This is how you can configure our AppCarrySdk instance and connect it to your AppCarry account.
Example (using map):
import 'package:appcarry_sdk/appcarry_sdk.dart';
//..
Map AppCarryOptions = { "acDevKey": acDevKey,
"acAppId": appId,
"isDebug": true};
AppCarrySdk AppCarrySdk = AppCarrySdk(AppCarryOptions);
copied to clipboard
🚀 Initializing the SDK #
The next step is to call initSdk which have the optional boolean parameters
registerConversionDataCallback and
`registerOnAppOpenAttributionCallback which are set to true as default.
After we call initSdk we can use all of AppCarry SDK features.
Initialize the SDK to enable AppCarry to detect installations, sessions (app opens) ,updates and use all of our features.
AppCarrySdk.initSdk(
registerConversionDataCallback: true,
registerOnAppOpenAttributionCallback: true
);
copied to clipboard
📖 Guides #
Great installation and setup guides can be viewed [here]
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.