我正在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 集成测试中选择它,扫描二维码,安装我的项目的 .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 文件。