我尝试设置 APM SDK,但是当我尝试运行我的应用程序时,我收到以下错误消息:
I/com.huawei.agc.apms: failed to fetch remote config: client token request miss client id, 请检查'agconnect-services.json'是否配置正确
我尝试设置 APM SDK,但是当我尝试运行我的应用程序时,我收到以下错误消息:
I/com.huawei.agc.apms: failed to fetch remote config: client token request miss client id, 请检查'agconnect-services.json'是否配置正确
我发现https://forums.developer.huawei.com/forumPortal/en/topic/0203417432150160006谈到了这个错误。
我发现我错过了在我的应用级别build.gradle文件中实际应用所需插件的(相当重要的)步骤
添加:
plugins {
id 'com.android.application'
id 'com.huawei.agconnect'
id 'com.huawei.agconnect.apms'
}
解决了这个问题