我在Unity项目中使用AppsFlyer Unity
基于以下文档。https:/support.appsflyer.comhcen-usarticles213766183-Unity-plugin-V4-integration-guid-for-developers。 我按照必要的步骤进行了操作,但到了运行集成测试的时候,却一直卡在这个界面上。https:/imgur.comataXW909。 我是否有什么潜在的东西可能会遗漏,导致这个问题?据我所知,我需要将我的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.coma7PxEnlW
我想测试一个APK文件,它不存在于任何一种商店。