gitextract_u2enc1o6/ ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ └── config.yml │ └── workflows/ │ ├── Scripts/ │ │ ├── checkJira.sh │ │ └── extractPackage.py │ ├── activation.yml │ ├── check_packages.yml │ ├── close_inactive_issues.yml │ ├── issues_workflow.yml │ ├── main.yml │ ├── readme_sync.yml │ ├── release_QA_workflow.yml │ ├── release_production_workflow.yml │ ├── release_to_QA.yml │ ├── release_to_production.yml │ ├── responseToSupportIssue.yml │ ├── responseToSupportIssueOnOpen.yml │ ├── test-unity-auth.yml │ └── update_links.yml ├── .gitignore ├── Assets/ │ ├── AppsFlyer/ │ │ ├── AFAdRevenueData.cs │ │ ├── AFAdRevenueData.cs.meta │ │ ├── AFInAppEvents.cs │ │ ├── AFInAppEvents.cs.meta │ │ ├── AFMiniJSON.cs │ │ ├── AFMiniJSON.cs.meta │ │ ├── AFPurchaseDetailsAndroid.cs │ │ ├── AFPurchaseDetailsAndroid.cs.meta │ │ ├── AFSDKPurchaseDetailsIOS.cs │ │ ├── AFSDKPurchaseDetailsIOS.cs.meta │ │ ├── AFSDKValidateAndLogResult.cs │ │ ├── AFSDKValidateAndLogResult.cs.meta │ │ ├── AppsFlyer.asmdef │ │ ├── AppsFlyer.asmdef.meta │ │ ├── AppsFlyer.cs │ │ ├── AppsFlyer.cs.meta │ │ ├── AppsFlyerAndroid.cs │ │ ├── AppsFlyerAndroid.cs.meta │ │ ├── AppsFlyerConsent.cs │ │ ├── AppsFlyerConsent.cs.meta │ │ ├── AppsFlyerEventArgs.cs │ │ ├── AppsFlyerEventArgs.cs.meta │ │ ├── AppsFlyerObject.prefab │ │ ├── AppsFlyerObject.prefab.meta │ │ ├── AppsFlyerObjectScript.cs │ │ ├── AppsFlyerObjectScript.cs.meta │ │ ├── AppsFlyerPurchaseConnector.cs │ │ ├── AppsFlyerPurchaseConnector.cs.meta │ │ ├── AppsFlyeriOS.cs │ │ ├── AppsFlyeriOS.cs.meta │ │ ├── Editor/ │ │ │ ├── AppsFlyer.Editor.asmdef │ │ │ ├── AppsFlyer.Editor.asmdef.meta │ │ │ ├── AppsFlyerDependencies.xml │ │ │ ├── AppsFlyerDependencies.xml.meta │ │ │ ├── AppsFlyerObjectEditor.cs │ │ │ ├── AppsFlyerObjectEditor.cs.meta │ │ │ └── appsflyer_logo.png.meta │ │ ├── Editor.meta │ │ ├── IAppsFlyerAndroidBridge.cs │ │ ├── IAppsFlyerAndroidBridge.cs.meta │ │ ├── IAppsFlyerConversionData.cs │ │ ├── IAppsFlyerConversionData.cs.meta │ │ ├── IAppsFlyerIOSBridge.cs │ │ ├── IAppsFlyerIOSBridge.cs.meta │ │ ├── IAppsFlyerNativeBridge.cs │ │ ├── IAppsFlyerNativeBridge.cs.meta │ │ ├── IAppsFlyerPurchaseValidation.cs │ │ ├── IAppsFlyerPurchaseValidation.cs.meta │ │ ├── IAppsFlyerUserInvite.cs │ │ ├── IAppsFlyerUserInvite.cs.meta │ │ ├── IAppsFlyerValidateAndLog.cs │ │ ├── IAppsFlyerValidateAndLog.cs.meta │ │ ├── IAppsFlyerValidateReceipt.cs │ │ ├── IAppsFlyerValidateReceipt.cs.meta │ │ ├── Mac/ │ │ │ ├── AppsFlyerBundle.bundle/ │ │ │ │ ├── Contents/ │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── Info.plist.meta │ │ │ │ │ ├── MacOS/ │ │ │ │ │ │ ├── AppsFlyerBundle │ │ │ │ │ │ └── AppsFlyerBundle.meta │ │ │ │ │ ├── MacOS.meta │ │ │ │ │ ├── _CodeSignature/ │ │ │ │ │ │ ├── CodeResources │ │ │ │ │ │ └── CodeResources.meta │ │ │ │ │ └── _CodeSignature.meta │ │ │ │ └── Contents.meta │ │ │ └── AppsFlyerBundle.bundle.meta │ │ ├── Mac.meta │ │ ├── Plugins/ │ │ │ ├── iOS/ │ │ │ │ ├── AFUnityStoreKit2Bridge.swift │ │ │ │ ├── AFUnityStoreKit2Bridge.swift.meta │ │ │ │ ├── AFUnityUtils.h │ │ │ │ ├── AFUnityUtils.h.meta │ │ │ │ ├── AFUnityUtils.mm │ │ │ │ ├── AFUnityUtils.mm.meta │ │ │ │ ├── AppsFlyer+AppController.m │ │ │ │ ├── AppsFlyer+AppController.m.meta │ │ │ │ ├── AppsFlyerAppController.mm │ │ │ │ ├── AppsFlyerAppController.mm.meta │ │ │ │ ├── AppsFlyerAttribution.h │ │ │ │ ├── AppsFlyerAttribution.h.meta │ │ │ │ ├── AppsFlyerAttribution.m │ │ │ │ ├── AppsFlyerAttribution.m.meta │ │ │ │ ├── AppsFlyeriOSWrapper.h │ │ │ │ ├── AppsFlyeriOSWrapper.h.meta │ │ │ │ ├── AppsFlyeriOSWrapper.mm │ │ │ │ └── AppsFlyeriOSWrapper.mm.meta │ │ │ └── iOS.meta │ │ ├── Plugins.meta │ │ ├── ProductPurchase.cs │ │ ├── ProductPurchase.cs.meta │ │ ├── Tests/ │ │ │ ├── Castle.Core.dll.meta │ │ │ ├── NSubstitute.dll.meta │ │ │ ├── System.Runtime.CompilerServices.Unsafe.dll.meta │ │ │ ├── System.Threading.Tasks.Extensions.dll.meta │ │ │ ├── Tests.asmdef │ │ │ ├── Tests.asmdef.meta │ │ │ ├── Tests_Suite.cs │ │ │ └── Tests_Suite.cs.meta │ │ ├── Tests.meta │ │ ├── Windows/ │ │ │ ├── AppsFlyerLib.pdb │ │ │ ├── AppsFlyerLib.pdb.meta │ │ │ ├── AppsFlyerLib.pri │ │ │ ├── AppsFlyerLib.pri.meta │ │ │ ├── AppsFlyerLib.winmd │ │ │ ├── AppsFlyerLib.winmd.meta │ │ │ ├── AppsFlyerWindows.cs │ │ │ └── AppsFlyerWindows.cs.meta │ │ ├── Windows.meta │ │ ├── package.json │ │ └── package.json.meta │ └── AppsFlyer.meta ├── CHANGELOG.md ├── LICENSE ├── ProjectSettings/ │ ├── AudioManager.asset │ ├── ClusterInputManager.asset │ ├── DynamicsManager.asset │ ├── EditorBuildSettings.asset │ ├── EditorSettings.asset │ ├── GraphicsSettings.asset │ ├── InputManager.asset │ ├── MemorySettings.asset │ ├── MultiplayerManager.asset │ ├── NavMeshAreas.asset │ ├── PackageManagerSettings.asset │ ├── Physics2DSettings.asset │ ├── PresetManager.asset │ ├── ProjectSettings.asset │ ├── ProjectVersion.txt │ ├── QualitySettings.asset │ ├── TagManager.asset │ ├── TimeManager.asset │ ├── UnityConnectSettings.asset │ ├── VFXManager.asset │ ├── VersionControlSettings.asset │ └── XRSettings.asset ├── README.md ├── UserSettings/ │ ├── EditorUserSettings.asset │ ├── Layouts/ │ │ ├── default-2021.dwlt │ │ └── default-6000.dwlt │ └── Search.settings ├── android-unity-wrapper/ │ ├── .gitignore │ ├── app/ │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src/ │ │ ├── androidTest/ │ │ │ └── java/ │ │ │ └── com/ │ │ │ └── appsflyer/ │ │ │ └── unity/ │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main/ │ │ │ ├── AndroidManifest.xml │ │ │ └── res/ │ │ │ ├── drawable/ │ │ │ │ └── ic_launcher_background.xml │ │ │ ├── drawable-v24/ │ │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── mipmap-anydpi-v26/ │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ └── values/ │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test/ │ │ └── java/ │ │ └── com/ │ │ └── appsflyer/ │ │ └── unity/ │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle/ │ │ └── wrapper/ │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── settings.gradle │ └── unitywrapper/ │ ├── .gitignore │ ├── build.gradle │ ├── consumer-rules.pro │ ├── libs/ │ │ └── classes.jar │ ├── proguard-rules.pro │ ├── publish.gradle │ └── src/ │ └── main/ │ ├── AndroidManifest.xml │ └── java/ │ └── com/ │ └── appsflyer/ │ └── unity/ │ ├── AppsFlyerAndroidWrapper.java │ └── PurchaseRevenueBridge.java ├── appsflyer-unity-plugin-6.17.90.unitypackage ├── appsflyer-unity-plugin-6.17.91.unitypackage ├── deploy/ │ ├── build_unity_package.sh │ ├── external-dependency-manager-1.2.183.unitypackage │ └── strict_mode_build_package.sh ├── docs/ │ ├── API.md │ ├── BasicIntegration.md │ ├── DMAConsent.md │ ├── DeepLinkIntegrate.md │ ├── InAppEvents.md │ ├── Installation.md │ ├── Introduction.md │ ├── MigrationGuide.md │ ├── PushNotifications.md │ ├── Testing.md │ ├── Troubleshooting.md │ ├── UnifiedDeepLink.md │ ├── UninstallMeasurement.md │ ├── UserInvite.md │ ├── ad-revenue-unity.md │ ├── conversion-data-unity.md │ ├── purchase-connector.md │ ├── purchase-validation-unity.md │ └── validate-and-log-unity.md ├── obj/ │ └── Debug/ │ └── .NETFramework,Version=v4.7.1.AssemblyAttributes.cs └── strict-mode-sdk/ ├── appsflyer-unity-plugin-strict-mode-6.17.90.unitypackage ├── appsflyer-unity-plugin-strict-mode-6.17.91.unitypackage └── strictMode.md