如题,Android 离线打包,使用Facebook 归因插件报此异常.
Android Studio 版本:4.2.2
Hbuilder 版本:3.1.22
测试机类型(所有机型都有此异常.): 华为 honor 9
集成的facebook 类库: implementation 'com.facebook.android:facebook-android-sdk:[5,6)'
对照文档地址:https://developers.facebook.com/docs/app-events/getting-started-app-events-android
/**
* FaceBook 添加应用内事件埋点
* @param eventKey 事件的key
* @param eventValues 事件包含的参数
*/
//run ui thread
@UniJSMethod(uiThread = true)
public void logEvent(String eventKey, JSONObject eventValues){
Log.i("FaceBookAnalytics",eventKey);
AppEventsLogger logger = AppEventsLogger.newLogger((Activity)mWXSDKInstance.getContext());
Bundle bundle = null;
if(eventValues != null){
bundle = new Bundle();
for(String key : eventValues.keySet()){
bundle.putString(key,eventValues.getString(key));
}
}
logger.logEvent(eventKey, bundle);
}
2 个回复
a***@foxmail.com
请问怎么解决的
5***@qq.com
我也想知道怎么解决的,我是部分机型原生插件 报此异常