affise_attribution_lib 1.7.4
affise_attribution_lib: ^1.7.4 copied to clipboard
Affise Attribution Flutter plugin.
Affise Attribution Flutter Library #
| Package | Version |
|---|---|
affise_attribution_lib |
- Affise Attribution Flutter Library
- Description
- Features
- ProviderType identifiers collection
- Event send control
- Events tracking
- Custom events tracking
- Predefined event parameters
- Events buffering
- Advertising Identifier (google) tracking
- Open Advertising Identifier (huawei) tracking
- Install referrer tracking
- Push token tracking
- Uninstall tracking
- APK preinstall tracking
- Links
- Offline mode
- Disable tracking
- Disable background tracking
- Get random user Id
- Get Affice device Id
- Get providers
- Is first run
- Get referrer
- Get referrer value
- Referrer keys
- Get module status
- Platform specific
- SDK to SDK integrations
- Debug
- Troubleshoots
Description #
Affise SDK is a software you can use to collect app usage statistics, device identifiers, deeplink usage, track install referrer.
Quick start #
SDK compatibility #
Flutter3.3.0+Android24+iOS12+Xcode14.2+Java17+
Demo App:
Flutter3.35.6+
Integration #
Integrate as dependency #
Add dependency to pubspec.yaml in your flutter application
dependencies:
affise_attribution_lib: ^1.7.4
Integrate as git dependency #
Add git dependency to pubspec.yaml in your flutter application
dependencies:
affise_attribution_lib:
git:
url: https://github.com/affise/affise-mmp-sdk-flutter
Initialize #
After dependency is added, sync project with flutter pub get and initialize.
Demo app
main.dart
import 'package:flutter/foundation.dart';
import 'package:affise_attribution_lib/affise.dart';
class _MyAppState extends State<MyApp> {
@override
void initState() {
super.initState();
Affise
.settings(
affiseAppId: "Your appId", //Change to your app id
secretKey: "Your SDK secretKey", //Change to your SDK secretKey
)
.start(); // Start Affise SDK
}
}
Initialization callbacks
Check Affise library initialization
Affise
.settings(
affiseAppId: "Your appId",
secretKey: "Your SDK secretKey",
)
.setOnInitSuccess(() {
// Called if library initialization succeeded
print("Affise: init success");
})
.setOnInitError((error) {
// Called if library initialization failed
print("Affise: init error $error");
})
.start(); // Start Affise SDK
Before application is published
Caution
π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯
Please make sure your credentials are valid
Visit section validation credentials
π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯
Domain
Set SDK server domain:
Affise
.settings(
affiseAppId: "Your appId",
secretKey: "Your SDK secretKey",
)
.setProduction(false)
.setDomain("https://YoureCustomDomain/") // Set custom domain
.start(); // Start Affise SDK
Requirements #
Android
Minimal Android SDK version is 21
Example example/android/app/build.gradle
android {
defaultConfig {
minSdkVersion Math.max(flutter.minSdkVersion, 21)
}
}
For a minimal working functionality your app needs to declare internet permission:
<manifest>
<uses-permission android:name="android.permission.INTERNET"/>
</manifest>
OAID certificate in your project example/android/app/src/main/assets/oaid.cert.pem
iOS
Affise SDK uses AppTrackingTransparency framework to get advertisingIdentifier
For working functionality your app needs to declare NSUserTrackingUsageDescription permission:
Open XCode project info.plist and add key NSUserTrackingUsageDescription with string value
Example info.plist:
<plist version="1.0">
<dict>
...
<key>NSUserTrackingUsageDescription</key>
<string>Youre permission text</string>
</dict>
Modules #
Android
Add modules to android project
| Module | Version |
|---|---|
ADVERTISING |
|
ANDROIDID |
|
APPSFLYER |
|
LINK |
|
NETWORK |
|
PHONE |
|
STATUS |
|
SUBSCRIPTION |
|
RUSTORE |
|
HUAWEI |
|
META |
|
TIKTOK |
Example example/android/app/build.gradle
final affise_version = '1.7.4'
dependencies {
// Affise modules
implementation "com.affise:module-advertising:$affise_version"
implementation "com.affise:module-androidid:$affise_version"
implementation "com.affise:module-link:$affise_version"
implementation "com.affise:module-network:$affise_version"
implementation "com.affise:module-phone:$affise_version"
implementation "com.affise:module-status:$affise_version"
// implementation "com.affise:module-subscription:$affise_version"
// implementation "com.affise:module-meta:$affise_version"
// implementation "com.affise:module-rustore:$affise_version"
// implementation "com.affise:module-huawei:$affise_version"
// implementation "com.affise:module-appsflyer:$affise_version"
// implementation "com.affise:module-tiktok:$affise_version"
}
iOS
Add modules to iOS project
| Module | Version |
|---|---|
ADSERVICE |
|
ADVERTISING |
|
APPSFLYER |
|
LINK |
|
PERSISTENT |
|
STATUS |
|
SUBSCRIPTION |
|
TIKTOK |
Example example/ios/Podfile
target 'Runner' do
# ...
affise_version = '1.7.4'
# All Affise Modules
pod 'AffiseModule', affise_version
# Or only specific Modules
pod 'AffiseModule/AdService', affise_version
pod 'AffiseModule/Advertising', affise_version
pod 'AffiseModule/Link', affise_version
pod 'AffiseModule/Persistent', affise_version
pod 'AffiseModule/Status', affise_version
# pod 'AffiseModule/Subscription', affise_version
# pod 'AffiseModule/AppsFlyer', affise_version
# pod 'AffiseModule/TikTok', affise_version
end
Installed active modules
Get list of installed modules:
Affise.module.getModulesInstalled().then((modules) {
print("Modules: $modules");
});
Manual exclude modules
To manually stop modules from starting use Affise.settings.setDisableModules:
Affise
.settings(
affiseAppId: "Your appId", //Change to your app id
secretKey: "Your SDK secretKey", //Change to your SDK secretKey
)
.setDisableModules([
// Exclude modules from start
AffiseModules.ADVERTISING,
AffiseModules.SUBSCRIPTION,
])
.start(); // Start Affise SDK
Module AdService
iOS 14.3+
Sends attributionToken from AdServices framework AAAttribution.attributionToken() to Affise server
Module Advertising
Caution
π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯
iOS only
Advertising Module starting Manually
π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯
Affise.module.advertising.startModule();
Caution
π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯
iOS only
Module Advertising requires NSUserTrackingUsageDescription key in info.plist
Application will crash if key not present
π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯
This module required to Use IDFA (Identifier for advertisers)
Open info.plist and add key NSUserTrackingUsageDescription with string value. For more information read requirements
Module AppsFlyer
Send AppsFlyer event data to Affise
//AppsFlyer event data
String eventName = "af_add_to_wishlist";
Map<String, dynamic> eventValues = {
"af_price": 1234.56,
"af_content_id": "1234567",
};
// Send AppsFlyer event
appsflyerSdk.logEvent(eventName, eventValues).then((onValue) {});
// Send AppsFlyer data to Affise
Affise.module.appsFlyer.logEvent(eventName, eventValues);
Is Module present:
Affise.module.appsFlyer.hasModule().then((hasModule) => {
// Check is module present
});
Module Huawei
Caution
π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯
Use Android Huawei Module to get OAID (Open Advertising Identifier)
π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯
Affise.getProviders().then((providers) {
var oaid = providers[ProviderType.OAID];
});
Module Link
Return last url in chan of redirection
π₯Support MAX 10 redirectionsπ₯
Affise.module.link.resolve("SITE_WITH_REDIRECTION", (redirectUrl) {
// handle redirect url
});
Is Module present:
Affise.module.link.hasModule().then((hasModule) => {
// Check is module present
});
Module Meta
- Add
queriesto yourAndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<queries>
<package android:name="com.facebook.katana" />
<package android:name="com.instagram.android" />
<package android:name="com.facebook.lite" />
</queries>
<application>
...
</application>
</manifest>
- Add your
Facebook App Idas config valueAffiseConfig.FB_APP_IDinAffise.settings
Affise
.settings(
affiseAppId: "Your appId", //Change to your app id
secretKey: "Your SDK secretKey", //Change to your SDK secretKey
)
.setConfigValue(AffiseConfig.FB_APP_ID, "Your Facebook App Id")
.start(); // Start Affise SDK
Module Persistent
iOS Only
Note
Module requires user phone to be authenticated by Apple ID
It uses Apple Security framework to store protected information in user account
Persist device id value for Get random device Id on application reinstall
Module Status
Affise.module.getStatus(AffiseModules.STATUS, (response) {
// handle status response
});
Module Subscription
Get products by ids:
var ids = ["exampple.product.id_1", "exampple.product.id_2"];
Affise.module.subscription.fetchProducts(ids, (result) {
if (result.isSuccess) {
var value = result.asSuccess;
List<AffiseProduct> products = value.products;
List<String> invalidIds = value.invalidIds;
} else {
String error = result.asFailure;
}
});
Purchase product:
// Specify product type for correct affise event
Affise.module.subscription.purchase(product, AffiseProductType.CONSUMABLE, (result) {
if (result.isSuccess) {
AffisePurchasedInfo purchasedInfo = result.asSuccess;
} else {
String error = result.asFailure;
}
});
Is Module present:
Affise.module.subscription.hasModule().then((hasModule) => {
// Check is module present
});
AffiseProductType
CONSUMABLENON_CONSUMABLERENEWABLE_SUBSCRIPTIONNON_RENEWABLE_SUBSCRIPTION
Module TikTok
Caution
π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯
There are no official flutter TikTok package.
You have to add native dependency manually.
Add the Android TikTok SDK dependency TikTok Docs
Add the iOS TikTok SDK dependency TikTok Docs
π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯
final String eventName = "AddToCart";
final String eventId = "eventId";
final Map<String, dynamic> properties = {
"currency": "USD",
"value": 4.99,
"contents": [
{
"price": "4.99",
"quantity": "1",
"content_name": "Name of the product",
"brand": "Brand of the product",
},
],
};
// Send TikTok data to Affise
Affise.module.tikTok.sendEvent(eventName, properties, eventId);
Is Module present:
Affise.module.tikTok.hasModule().then((hasModule) => {
// Check is module present
});
Persistent data #
Some methods require to return same data on application reinstall
It is achieved by using Affise Persistent Module for iOS and Affise AndroidId Module for Android
Such SDK methods are:
To simulate multiple device install for testing purpose you can use one of two options:
- Disable module dependencies:
iOS
# Disable module dependency
# pod 'AffiseModule/Persistent', affise_version
Android
// Disable module dependency
// implementation("com.affise:module-androidid:$affise_version")
- Disable module programmatically:
Affise
.settings(
affiseAppId: "Your appId",
secretKey: "Your SDK secretKey",
)
.setDisableModules([
AffiseModules.PERSISTENT, // Disable module programmatically for iOS
AffiseModules.ANDROIDID, // Disable module programmatically for Android
])
.start();
Reinstall tracking #
Note
Read more about Persistent data
There are two working mode for Affice device Id:
- Return persistent value on each reinstall
- Return new value on each reinstall
First mode require:
- Enabling Affise Persistent Module for
iOS
# Enable module dependency
pod 'AffiseModule/Persistent', affise_version
- Enabling Affise AndroidId Module for
Android
// Enable module dependency
implementation("com.affise:module-androidid:$affise_version")
Even after deleting application Affice device Id will be preserved and will restore on next installation
Second mode is convenient for testing. By removing dependency or disabling module programmatically, a new Affice device Id will be generated for each new installation.
Features #
ProviderType identifiers collection #
To match users with events and data library is sending, these ProviderType identifiers are collected:
Attribution #
AFFISE_APP_IDAFFISE_PKG_APP_NAMEAFF_APP_NAME_DASHBOARDAPP_VERSIONAPP_VERSION_RAWSTORETRACKER_TOKENTRACKER_NAMEFIRST_TRACKER_TOKENFIRST_TRACKER_NAMELAST_TRACKER_TOKENLAST_TRACKER_NAMEOUTDATED_TRACKER_TOKENINSTALLED_TIMEFIRST_OPEN_TIMEINSTALLED_HOURFIRST_OPEN_HOURINSTALL_FIRST_EVENTINSTALL_BEGIN_TIMEINSTALL_FINISH_TIMEREFERRER_INSTALL_VERSIONREFERRAL_TIMEREFERRER_CLICK_TIMEREFERRER_CLICK_TIME_SERVERREFERRER_GOOGLE_PLAY_INSTANTCREATED_TIMECREATED_TIME_MILLICREATED_TIME_HOURUNINSTALL_TIMEREINSTALL_TIMELAST_SESSION_TIMECPU_TYPEHARDWARE_NAMEDEVICE_MANUFACTURERDEEPLINK_CLICKDEVICE_ATLAS_IDAFFISE_DEVICE_IDAFFISE_ALT_DEVICE_IDREFTOKENREFTOKENSREFERRERREFERRER_UPDATEDUSER_AGENTMCCODEMNCODEREGIONCOUNTRYLANGUAGEDEVICE_NAMEDEVICE_TYPEOS_NAMEPLATFORMSDK_PLATFORMAPI_LEVEL_OSAFFISE_SDK_VERSIONOS_VERSIONRANDOM_USER_IDAFFISE_SDK_POSTIMEZONE_DEVAFFISE_EVENT_NAMEAFFISE_EVENT_TOKENLAST_TIME_SESSIONTIME_SESSIONAFFISE_SESSION_COUNTLIFETIME_SESSION_COUNTAFFISE_DEEPLINKAFFISE_PART_PARAM_NAMEAFFISE_PART_PARAM_NAME_TOKENAFFISE_APP_TOKENLABELAFFISE_SDK_SECRET_IDUUIDAFFISE_APP_OPENEDPUSHTOKENPUSHTOKEN_SERVICEAFFISE_EVENTS_COUNTAFFISE_SDK_EVENTS_COUNTAFFISE_METRICS_EVENTS_COUNTAFFISE_INTERNAL_EVENTS_COUNTIS_ROOTEDIS_EMULATOR
AdService #
AD_SERVICE_ATTRIBUTION
Advertising #
GAID_ADIDGAID_ADID_MD5ADIDALTSTR_ADIDFIREOS_ADIDCOLOROS_ADID
AndroidId #
ANDROID_IDANDROID_ID_MD5
Huawei #
OAIDOAID_MD5
Meta #
META
Network #
MAC_SHA1MAC_MD5CONNECTION_TYPEPROXY_IP_ADDRESS
Phone #
NETWORK_TYPEISP
Event send control #
There are two ways to send events
- Cache event to later scheduled send in batch
AddToCartEvent()
.send();
- Send event right now
AddToCartEvent()
.sendNow(() {
// handle event send success
}, (status) {
// handle event send failed
// π₯Warningπ₯: event is NOT cached for later send
});
Events tracking #
For example, we want to track what items usually user adds to shopping cart. To send event first create it with following code
import 'package:affise_attribution_lib/affise.dart';
class Presenter {
void onUserAddsItemsToCart(String item) {
Map<String, dynamic> items = {
"items": "cookies, potato, milk",
};
AddToCartEvent(userData: "groceries")
.addPredefinedObject(PredefinedObject.CONTENT, items)
.send(); // Send event
}
}
With above example you can implement other events:
AchieveLevelAddPaymentInfoAddToCartAddToWishlistAdRevenueClickAdvCompleteRegistrationCompleteStreamCompleteTrialCompleteTutorialContactContentItemsViewCustomizeProductDeepLinkedDonateFindLocationInitiateCheckoutInitiatePurchaseInitiateStreamInviteLastAttributedTouchLeadListViewLoginOpenedFromPushNotificationOrderOrderItemAddedOrderItemRemoveOrderCancelOrderReturnRequestOrderReturnRequestCancelPurchaseRateReEngageReserveSalesScheduleSearchShareSpendCreditsStartRegistrationStartTrialStartTutorialSubmitApplicationSubscribeTravelBookingUnlockAchievementUnsubscribeUpdateViewAdvViewCartViewContentViewItemViewItemsInitialSubscriptionInitialTrialInitialOfferConvertedTrialConvertedOfferTrialInRetryOfferInRetrySubscriptionInRetryRenewedSubscriptionFailedSubscriptionFromRetryFailedOfferFromRetryFailedTrialFromRetryFailedSubscriptionFailedOfferiseFailedTrialReactivatedSubscriptionRenewedSubscriptionFromRetryConvertedOfferFromRetryConvertedTrialFromRetryUnsubscription
Custom events tracking #
Use any of custom events if default doesn't fit your scenario:
CustomId01EventCustomId02EventCustomId03EventCustomId04EventCustomId05EventCustomId06EventCustomId07EventCustomId08EventCustomId09EventCustomId10Event
If above event functionality still limits your usecase, you can use UserCustomEvent
UserCustomEvent(eventName: "MyCustomEvent")
.send();
Predefined event parameters #
To enrich your event with another dimension, you can use predefined parameters for most common cases. Add it to any event:
import 'package:affise_attribution_lib/affise.dart';
class Presenter {
void onUserAddsItemsToCart(String item) {
Map<String, dynamic> items = {
"items": "cookies, potato, milk",
};
AddToCartEvent(
timeStampMillis: DateTime.now().millisecondsSinceEpoch,
)
.addPredefinedString(PredefinedString.DESCRIPTION, "best before 2029")
.addPredefinedObject(PredefinedObject.CONTENT, items)
.send(); // Send event
}
}
In examples above PredefinedParameters.DESCRIPTION and PredefinedObject.CONTENT is used, but many others is available:
| PredefinedParameter | Type | Event Method |
|---|---|---|
| PredefinedString | String | addPredefinedString() |
| PredefinedLong | int | addPredefinedLong() |
| PredefinedFloat | double | addPredefinedFloat() |
| PredefinedObject | Map<String, dynamic> | addPredefinedObject() |
| PredefinedListObject | List<Map<String, dynamic>> | addPredefinedListObject() |
| PredefinedListString | List<String> | addPredefinedListString() |
PredefinedString #
ACHIEVEMENT_IDADREV_AD_TYPEBRANDBRICKCAMPAIGN_IDCATALOGUE_IDCHANNEL_TYPECITYCLASSCLICK_IDCONTENT_IDCONTENT_NAMECONTENT_TYPECONVERSION_IDCOUNTRYCOUPON_CODECURRENCYCUSTOMER_SEGMENTCUSTOMER_TYPECUSTOMER_USER_IDDEEP_LINKDESCRIPTIONDESTINATION_ADESTINATION_BDESTINATION_LISTEVENT_NAMENEW_VERSIONNETWORKOLD_VERSIONORDER_IDPARAM_01PARAM_02PARAM_03PARAM_04PARAM_05PARAM_06PARAM_07PARAM_08PARAM_09PARAM_10PAYMENT_INFO_AVAILABLEPIDPLACEMENTPREFERRED_NEIGHBORHOODSPRODUCT_IDPRODUCT_NAMEPURCHASE_CURRENCYRECEIPT_IDREGIONREGISTRATION_METHODREVIEW_TEXTSEARCH_STRINGSEGMENTSOURCESTATUSSUBSCRIPTION_IDSUCCESSSUGGESTED_DESTINATIONSSUGGESTED_HOTELSTUTORIAL_IDUNITUTM_CAMPAIGNUTM_MEDIUMUTM_SOURCEVALIDATEDVERTICALVIRTUAL_CURRENCY_NAMEVOUCHER_CODE
PredefinedLong #
AMOUNTDATE_ADATE_BDEPARTING_ARRIVAL_DATEDEPARTING_DEPARTURE_DATEHOTEL_SCORELEVELMAX_RATING_VALUENUM_ADULTSNUM_CHILDRENNUM_INFANTSPREFERRED_NUM_STOPSPREFERRED_STAR_RATINGSQUANTITYRATING_VALUERETURNING_ARRIVAL_DATERETURNING_DEPARTURE_DATESCORETRAVEL_STARTTRAVEL_ENDUSER_SCOREEVENT_STARTEVENT_END
PredefinedFloat #
PREFERRED_PRICE_RANGEPRICEREVENUELATLONG
PredefinedObject #
CONTENT
PredefinedListObject #
CONTENT_LIST
PredefinedListString #
CONTENT_IDS
Events buffering #
Affise library will send any pending events with first opportunity, but if there is no network connection or device is disabled, events are kept locally for 7 days before deletion.
Advertising Identifier (google) tracking #
Note
Requires Affise Advertising Module
Advertising Identifier (google) tracking is supported automatically, no actions needed
Open Advertising Identifier (huawei) tracking #
Note
Requires Affise Huawei Module
Open Advertising Identifier is supported automatically, no actions needed
Install referrer tracking #
Install referrer tracking is supported automatically, no actions needed
Push token tracking #
To let affise track push token you need to receive it from your push service provider, and pass to Affise library.
Supported service providers:
APPLE- iOS onlyFIREBASE
Native #
iOS APNs
Edit [AppDelegate.swift](ios/Runner/AppDelegate.swift)
import AffiseAttributionLib
@UIApplicationMain
@objc class AppDelegate: FlutterAppDelegate {
override func application(
_ application: UIApplication,
didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?
) -> Bool {
GeneratedPluginRegistrant.register(with: self)
let result = super.application(application, didFinishLaunchingWithOptions: launchOptions)
application.registerForRemoteNotifications()
return result
}
override func application(
_ application: UIApplication,
didRegisterForRemoteNotificationsWithDeviceToken deviceToken: Data
) {
let pushToken = deviceToken.map { String(format: "%02.2hhx", $0) }.joined()
// Pass APNs token to Affise
Affise.addPushToken(pushToken, .APPLE)
}
}
Firebase Flutter Plugin #
Add Firebase integration by completing steps in Firebase Flutter Docs
After you have done with firebase integration, add to your cloud messaging service
FirebaseMessaging.instance.onTokenRefresh method Affise.addPushToken(pushToken)
import 'package:affise_attribution_lib/affise.dart';
import 'package:firebase_messaging/firebase_messaging.dart';
class _Application extends State<Application> {
@override
void initState() {
super.initState();
// Any time the token refreshes, pass this to Affise.
FirebaseMessaging.instance.onTokenRefresh.listen((pushToken) {
Affise.addPushToken(pushToken, PushTokenService.FIREBASE);
})
.onError((err) {
// Error getting token.
});
}
...
}
iOS APNs
After you have done with firebase integration, pass APNs token from
FirebaseMessaging.instance.getAPNSToken() to Affise.addPushToken(pushToken)
import 'dart:io';
import 'package:affise_attribution_lib/affise.dart';
import 'package:firebase_messaging/firebase_messaging.dart';
class _Application extends State<Application> {
@override
void initState() {
super.initState();
// Works only on iOS
if (Platform.isIOS) {
// Get Apple Push Notification Service token
FirebaseMessaging.instance.getAPNSToken().then((pushToken) {
if (pushToken != null) {
Affise.addPushToken(pushToken, PushTokenService.APPLE);
}
});
}
}
...
}
Uninstall tracking #
Affise automatically track reinstall events by using silent-push technology, to make this feature work, pass push token when it is recreated by user and on you application starts up
Affise.addPushToken("token", PushTokenService.FIREBASE);
APK preinstall tracking #
SDK is also supports scenario when APK is installed not from one of application markets, such as google play, huawei appgallery or amazon appstore
To use this feature, create file with name partner_key in your app assets directory, and write unique identifier inside, this key will be passed to our backend so you can track events by partner later in your Affise console.
Links #
Deeplinks #
Caution
π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯
Deeplinks support only CUSTOM scheme NOT http or https
For http or https read how to setup AppLinks
π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯
To integrate deeplink support you need:
-
Register deeplink callback right after
Affise.settings(..).start()
void init() {
Affise.settings(affiseAppId, secretKey).start(); // Start Affise SDK
Affise.registerDeeplinkCallback((value) {
// full uri "scheme://host/path?parameters"
var deeplink = value.deeplink;
// separated for convenience
var scheme = value.scheme;
var host = value.host;
var path = value.path;
var queryParametersMap = value.parameters;
if(queryParametersMap["<your_uri_key>"]?.contains("<your_uri_key_value>") == true) {
// handle value
}
});
}
Test Android DeepLink via terminal command:
adb shell am start -a android.intent.action.VIEW -d "YOUR_SCHEME://YOUR_DOMAIN/somepath?param=1\&list=some\&list=other\&list="
Test iOS DeepLink via terminal command:
xcrun simctl openurl booted "YOUR_SCHEME://YOUR_DOMAIN/somepath?param=1&list=some&list=other&list=1"
Android
To integrate deeplink support in android you need:
-
Add intent filter to one of your activities
AndroidManifest.xml example -
Add custom scheme (NOT
httporhttps) and host to filter
Example: YOUR_SCHEME://YOUR_DOMAIN
Example: myapp://mydomain.com
<meta-data android:name="flutter_deeplinking_enabled" android:value="true" />
<intent-filter android:autoVerify="true">
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data
android:host="YOUR_DOMAIN"
android:scheme="YOUR_SCHEME" />
</intent-filter>
iOS
To integrate deeplink support in iOS you need:
Add key CFBundleURLTypes to Info.plist example Info.plist
Example: YOUR_SCHEME://YOUR_DOMAIN
Example: myapp://mydomain.com
<key>CFBundleURLTypes</key>
<array>
<dict>
<key>CFBundleTypeRole</key>
<string>Editor</string>
<key>CFBundleURLName</key>
<string>YOUR_DOMAIN</string>
<key>CFBundleURLSchemes</key>
<array>
<string>YOUR_SCHEME</string>
</array>
</dict>
</array>
AppLinks #
Caution
π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯
You must owne website domain.
And has ability to add file https://yoursite/.well-known/apple-app-site-association for iOS support
And has ability to add file https://yoursite/.well-known/assetlinks.json for Android support
π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯
Android
To integrate applink support in android you need:
-
Add intent filter to one of your activities
AndroidManifest.xml example -
Add
httpsorhttpscheme and host to filter
Example: https://YOUR_DOMAIN
Example: https://mydomain.com
<meta-data android:name="flutter_deeplinking_enabled" android:value="true" />
<intent-filter android:autoVerify="true">
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data
android:host="YOUR_DOMAIN"
android:scheme="https" />
</intent-filter>
-
Associate your app with your website. Read Google instructions
How To Associate your app with your website
After setting up URL support for your app, the App Links Assistant generates a Digital Assets Links file you can use to associate your website with your app.
As an alternative to using the Digital Asset Links file, you can associate your site and app in Search Console.
If you're using Play App Signing for your app, then the certificate fingerprint produced by the App Links Assistant usually doesn't match the one on users' devices. In this case, you can find the correct Digital Asset Links JSON snippet for your app in your Play Console developer account under Release > Setup > App signing.
To associate your app and your website using the App Links Assistant, click Open Digital Asset Links File Generator from the App Links Assistant and follow these steps:
Figure 2. Enter details about your site and app to generate a Digital Asset Links file.-
Enter your Site domain and your Application ID.
-
To include support in your Digital Asset Links file for One Tap sign-in, select Support sharing credentials between the app and the website and enter your site's sign-in URL.This adds the following string to your Digital Asset Links file declaring that your app and website share sign-in credentials:
delegate_permission/common.get_login_creds. -
Specify the signing config or select a keystore file.
Make sure you select the right release config or keystore file for the release build or the debug config or keystore file for the debug build of your app. If you want to set up your production build, use the release config. If you want to test your build, use the debug config.
- Click Generate Digital Asset Links file.
- Once Android Studio generates the file, click Save file to download it.
- Upload the
assetlinks.jsonfile to your site, with read access for everyone, athttps://yoursite/.well-known/assetlinks.json.
Important
The system verifies the Digital Asset Links file via the encrypted HTTPS protocol. Make sure that the assetlinks.json file is accessible over an HTTPS connection, regardless of whether your app's intent filter includes https.
- Click Link and Verify to confirm that you've uploaded the correct Digital Asset Links file to the correct location.
Learn more about associating your website with your app through the Digital Asset Links file in Declare website associations.
-
iOS
To integrate applink support in iOS you need:
-
Follow how to set up applink in the official documentation.
-
Associate your app with your website. Supporting associated domains
-
Add key
com.apple.developer.associated-domainstoInfo.plist
Example: https://YOUR_DOMAIN
Example: https://mydomain.com
<key>com.apple.developer.associated-domains</key>
<array>
<string>applinks:YOUR_DOMAIN</string>
</array>
Get deferred deeplink #
Note
Requires Affise Status Module
Use the next public method of SDK to get deferred deeplink from server
Affise.getDeferredDeeplink((deferredDeeplink) {
// handle deferred deeplink
});
Get deferred deeplink value #
Note
Requires Affise Status Module
Use the next public method of SDK to get deferred deeplink value from server
Affise.getDeferredDeeplinkValue(ReferrerKey.CLICK_ID, (deferredDeeplinkValue) {
// handle deferred deeplink value
});
Offline mode #
In some scenarios you would want to limit Affise network usage, to pause that activity call anywhere in your application following code after Affise start:
Affise.settings(affiseAppId, secretKey).start(); // Start Affise SDK
Affise.setOfflineModeEnabled(true); // to enable offline mode
Affise.setOfflineModeEnabled(false); // to disable offline mode
While offline mode is enabled, your metrics and other events are kept locally, and will be delivered once offline mode is disabled. Offline mode is persistent as Application lifecycle, and will be disabled with process termination automatically. To check current offline mode status call:
Affise.isOfflineModeEnabled(); // returns true or false describing current tracking state
Disable tracking #
To disable any tracking activity, storing events and gathering device identifiers and metrics call anywhere in your application following code after Affise start:
Affise.settings(affiseAppId, secretKey).start(); // Start Affise SDK
Affise.setTrackingEnabled(true); // to enable tracking
Affise.setTrackingEnabled(false); // to disable tracking
By default tracking is enabled.
While tracking mode is disabled, metrics and other identifiers is not generated locally. Keep in mind that this flag is persistent until app reinstall, and don't forget to reactivate tracking when needed. To check current status of tracking call:
Affise.isTrackingEnabled(); // returns true or false describing current tracking state
Disable background tracking #
To disable any background tracking activity, storing events and gathering device identifiers and metrics call anywhere in your application following code after Affise start:
Affise.settings(affiseAppId, secretKey).start(); // Start Affise SDK
Affise.setBackgroundTrackingEnabled(true); // to enable background tracking
Affise.setBackgroundTrackingEnabled(false); // to disable background tracking
By default background tracking is enabled.
While background tracking mode is disabled, metrics and other identifiers is not generated locally. Background tracking mode is persistent as Application lifecycle, and will be re-enabled with process termination automatically. To check current status of background tracking call:
Affise.isBackgroundTrackingEnabled(); // returns true or false describing current background tracking state
Get random user Id #
Affise.getRandomUserId();
Caution
π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯
Return 11111111-1111-1111-1111-111111111111 if Affise SDK not initialized
Return 22222222-2222-2222-2222-222222222222 if no valid methods to retrieve id for current device
AffiseError.UUID_NOT_INITIALIZED == 11111111-1111-1111-1111-111111111111
AffiseError.UUID_NO_VALID_METHOD == 22222222-2222-2222-2222-222222222222
π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯
Get Affice device Id #
Note
To make device id more persistent on application reinstall
use Affise Persistent Module for iOS
use Affise AndroidId Module for Android
Note
Read more about Persistent data and Reinstall tracking
Affise.getRandomDeviceId();
Caution
π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯
Return 11111111-1111-1111-1111-111111111111 if Affise SDK not initialized
Return 22222222-2222-2222-2222-222222222222 if no valid methods to retrieve id for current device
AffiseError.UUID_NOT_INITIALIZED == 11111111-1111-1111-1111-111111111111
AffiseError.UUID_NO_VALID_METHOD == 22222222-2222-2222-2222-222222222222
π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯
Get providers #
Returns providers map with ProviderType as key
Affise.getProviders().then((providers) {
var key = ProviderType.AFFISE_APP_TOKEN;
var value = providers[key];
});
Caution
π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯
Return Empty Map if Affise SDK not initialized
π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯
Is first run #
Affise.isFirstRun().then((isFirstRun) {
// handle
});
Get referrer #
Use the next public method of SDK
To get Install referrer by installing from
AndroidRuStoreinclude moduleRuStore
To get Install referrer by installing from
AndroidAppGalleryinclude moduleHuawei
Affise.getReferrerUrl((value) {
// handle referrer
});
Get referrer value #
Use the next public method of SDK to get referrer value by
To get Install referrer by installing from
AndroidRuStoreinclude moduleRuStore
To get Install referrer by installing from
AndroidAppGalleryinclude moduleHuawei
Affise.getReferrerUrlValue(ReferrerKey.CLICK_ID, (value) {
// handle referrer
});
Referrer keys #
In examples above ReferrerKey.CLICK_ID is used, but many others is available:
AD_IDCAMPAIGN_IDCLICK_IDAFFISE_ADAFFISE_AD_IDAFFISE_AD_TYPEAFFISE_ADSETAFFISE_ADSET_IDAFFISE_AFFC_IDAFFISE_CHANNELAFFISE_CLICK_LOOK_BACKAFFISE_COST_CURRENCYAFFISE_COST_MODELAFFISE_COST_VALUEAFFISE_DEEPLINKAFFISE_KEYWORDSAFFISE_MEDIA_TYPEAFFISE_MODELAFFISE_OSAFFISE_PARTNERAFFISE_REFAFFISE_SITE_IDAFFISE_SUB_SITE_IDAFFISE_SUB_1AFFISE_SUB_2AFFISE_SUB_3AFFISE_SUB_4AFFISE_SUB_5AFFCPIDSUB_1SUB_2SUB_3SUB_4SUB_5
Get module status #
Affise.module.getStatus(AffiseModules.STATUS, (response) {
// handle status response
});
Platform specific #
GDPR right to be forgotten #
Android Only
Under the EU's General Data Protection Regulation (GDPR): An individual has the right to have their personal data erased. To provide this functionality to user, as the app developer, you can call
Affise.settings(affiseAppId, secretKey).start(); // Start Affise SDK
Affise.android.forget(); // to forget users data
After processing such request our backend servers will delete all users data. To prevent library from generating new events, disable tracking just before calling Affise.forget:
Affise.settings(affiseAppId, secretKey).start(); // Start Affise SDK
Affise.setTrackingEnabled(false);
Affise.android.forget(); // to forget users data
StoreKit Ad Network #
iOS Only
For ios prior 16.1 first call
Affise.ios.registerAppForAdNetworkAttribution((error) {
// Handle error
});
Updates the fine and coarse conversion values, and calls a completion handler if the update fails. Second argument coarseValue is available in iOS 16.1+
Affise.ios.updatePostbackConversionValue(1, SKAdNetwork.CoarseConversionValue.medium, (error) {
// Handle error
});
Configure your app to send postback copies to Affise:
Add key NSAdvertisingAttributionReportEndpoint to Info.plist
Set key value to https://affise-skadnetwork.com/
Example: example/ios/Runner/Info.plist
<key>CFBundleURLTypes</key>
<array>
<dict>
<key>NSAdvertisingAttributionReportEndpoint</key>
<string>https://affise-skadnetwork.com/</string>
</dict>
</array>
SDK to SDK integrations #
// Send AdRevenue info
AffiseAdRevenue(AffiseAdSource.ADMOB)
.setRevenue(2.5, "ImpressionData_Currency")
.setNetwork("ImpressionData_Network")
.setUnit("ImpressionData_Unit")
.setPlacement("ImpressionData_Placement")
.send();
Debug #
Validate credentials #
Caution
π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯
Debug methods WON'T work on Production
π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯
Validate your credentials by receiving ValidationStatus values:
VALID- your credentials are validINVALID_APP_ID- your app id is not validINVALID_SECRET_KEY- your SDK secretKey is not validPACKAGE_NAME_NOT_FOUND- your application package name not foundNOT_WORKING_ON_PRODUCTION- you using debug method on productionNETWORK_ERROR- network or server not available (for exampleAiroplane modeis active)
Affise
.settings(
affiseAppId: "Your appId",
secretKey: "Your SDK secretKey",
)
.setProduction(false) //To enable debug methods set Production to false
.start(); // Start Affise SDK
Affise.debug.validate((status) {
// Handle validation status
});
Version #
Get Affise flutter library version
Affise.debug.version()
Version native #
Get Affise native Android/iOS library version
Affise.debug.versionNative().then((version) {
// Native version
})
Troubleshoots #
Caution
π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯
If Affise settings doesn't change or api is working incorrectly
First: completely stop android application on device
Flutter relaunch on live code change, but native code (such as Affise native library) won't restart unless Android application is manually restarted or completely rebuild
π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯
Note
π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯
Then reporting a BUG
Please provide information:
-
From command
flutter doctor -v -
On which platform bug occurred
iOSorAndroid -
Detailed log of a bug
-
Steps to reproduse a bug
-
Code which cause a bug
π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯
iOS #
Caution
π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯
This app has crashed because Affise Advertising Module is attempted to access privacy-sensitive data without a usage description.
The app's Info.plist must contain an NSUserTrackingUsageDescription key with a string value explaining
to the user how the app uses this data.
π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯
Open info.plist and add key NSUserTrackingUsageDescription with string value. For more information read requirements