# appsflyer-unity-plugin **Repository Path**: aagone/appsflyer-unity-plugin ## Basic Information - **Project Name**: appsflyer-unity-plugin - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-08 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # appsflyer-unity-plugin [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT) [![GitHub tag](https://img.shields.io/github/v/release/AppsFlyerSDK/appsflyer-unity-plugin)](https://img.shields.io/github/v/release/AppsFlyerSDK/appsflyer-unity-plugin) [![Unit tests](https://github.com/AppsFlyerSDK/appsflyer-unity-plugin/actions/workflows/main.yml/badge.svg)](https://github.com/AppsFlyerSDK/appsflyer-unity-plugin/actions/workflows/main.yml) 🛠 In order for us to provide optimal support, we would kindly ask you to submit any issues to support@appsflyer.com > *When submitting an issue please specify your AppsFlyer sign-up (account) email , your app ID , production steps, logs, code snippets and any additional relevant information.* ### This plugin is built for - Android AppsFlyer SDK **v6.6.0** - iOS AppsFlyer SDK **v6.6.0** ## ❗❗ Breaking changes when updating to 6.6.0 ❗❗ - Starting version 6.6.0, there is no more need to differiencate between iOS and Android API. All API must be called with `AppsFlyer` class (even if the API is only iOS or Android). Example: Before 6.6.0: ```c# #if UNITY_IOS && !UNITY_EDITOR AppsFlyeriOS.waitForATTUserAuthorizationWithTimeoutInterval(60); #endif ``` --- After 6.6.0: ```c# #if UNITY_IOS && !UNITY_EDITOR AppsFlyer.waitForATTUserAuthorizationWithTimeoutInterval(60); #endif ``` --- ## ❗❗ Breaking changes when updating to 6.3.0 ❗❗ - 6.3.0 supports Universal Windows Platform. As part of this update, the AppsFlyerObjectScript changes to include the app_id for your UWP app. If you made changes to this file, please merge them with the new AppsFlyerObjectScript. Please also note that you can leave the uwp app id field empty. - From version `6.3.0`, we use `xcframework` for iOS platform, then you need to use cocoapods version >= 1.10 ## ⏩ Migration Migrating from the old plugin? (version V4)
View the migration docs [here](/docs/MigrationGuide.md). ⚠️ There are **breaking** changes when migrating to `Unity v5`. This includes new API, different class/package names, and the removal of `com.appsflyer.GetDeepLinkingActivity`. ##
📖 Guides - [Adding the SDK to your project](/docs/Installation.md) - [Initializing the SDK](/docs/BasicIntegration.md) - [In-app Events](/docs/InAppEvents.md) - [Deep Linking](/docs/DeepLink.md) - [Guides](/docs/Guides.md) - [Testing the integration](/docs/Testing.md) - [API](/docs/API.md) - [Troubleshooting](/docs/Troubleshooting.md)