如何为Unity项目运行AppsFlyer SDK集成测试?

时间:2020-06-16 17:21:02

标签: android unity3d appsflyer

我正在根据以下文档在Unity中使用AppsFlyer:https://support.appsflyer.com/hc/en-us/articles/213766183-Unity-plugin-V4-integration-guide-for-developers

我遵循了必要的步骤,但是在运行集成测试时,它只是停留在此屏幕中: https://imgur.com/a/taXW909

我是否缺少任何可能导致此问题的潜在事物?据我了解,我需要将我的Android设备列入白名单,在SDK集成测试中将其选中,扫描QR码,安装项目的.apk文件,然后AppsFlyer应该开始检测到某些东西。

其他详细信息

以下是用于初始化AppsFlyer的脚本:

public class AppsFlyerObject : MonoBehaviour
{
    private const string AppsFlyerKey = /* MY DEV KEY */;

    private void Start()
    {
        AppsFlyer.setAppsFlyerKey(AppsFlyerKey);
        AppsFlyer.init(AppsFlyerKey, "AppsFlyerTrackerCallbacks");
    }
}


关于AppsFlyer应用,这是我选择的设置: https://imgur.com/a/7PxEnlW

我想测试任何商店都不存在的APK文件。

1 个答案:

答案 0 :(得分:0)

相关问题