有没有会安卓的大佬,对接过Appsflyer的,求指点,安卓代码配置,打包apk后,安装但是Appsfluer后台没用任何事件的反馈,如何解决呢,求助!!!
package com.ss.future
import com.appsflyer.AppsFlyerLib
import com.ss.common.DefaultApplication
class App: DefaultApplication() {
override fun onCreate() {
super.onCreate()
AppsFlyerLib.getInstance().init("Bj4qqk7tfUC5sJQk5mkizX", null, this)
AppsFlyerLib.getInstance().start(this)
AppsFlyerLib.getInstance().setDebugLog(true);
}
}