Android集成mPass 埋点遇到的问题

问题1:

新建项目上报日志报错:need invoke bind before use

解决方案

在application中初始化   MPLogger.init(MyApplication.this);


问题2:

Caused by: java.lang.ClassNotFoundException: Didn't find class "org.apache.http.message.BasicNameValuePair" on path: DexPathList[[zip file "/system/framework/android.test.runner.jar", zip file "/system/framework/android.test.mock.jar", zip file "/data/app/com.gugud.mpasstestproject-YgqTgeWL_TlxPkzTHmDc1w==/base.apk"],nativeLibraryDirectories=[/data/app/com.gugud.mpasstestproject-YgqTgeWL_TlxPkzTHmDc1w==/lib/arm, /data/app/com.gugud.mpasstestproject-YgqTgeWL_TlxPkzTHmDc1w==/base.apk!/lib/armeabi, /system/lib, /product/lib]]

解决方案:

gradle 需要存在 implementation 'com.mpaas.android:rpc'

Mainifest.xml 里添加


问题3:

         自定义分析统计数据不准确和不及时问题

原因:  

        上报策略是同一种类型的数据是累计50次上报,可以在后台更改上报节点的累计次数

问题4:

        无法查看自定义分析的属性值,即parmes里的value

原因: 

         自定义分析只能统计次数,不能统计value里面的值


问题5:

        页面分析,设备分析等没有数据

原因:

        需要配置自动化日志

        页面分析,设备分析是T+1上报,今天的数据只能明天查看

你可能感兴趣的:(Android集成mPass 埋点遇到的问题)