1

我对logcat中的这条消息有些疑惑:</p>

E/HMSSDK_AGCUtils: Get appId with AGConnectServicesConfig failed

如果在查看 Maps Kit 地图时显示此错误或消息,以后可能会出现问题?
我已经尝试过以下方法:

  1. build.grade 中没有应用 agconnect 插件
  2. 手动添加
<meta-data 
   android:name="com.huawei.hms.client.appid" 
   <!-- Replace xxx with the actual app ID, which can be obtained on the App information page. --> --> 
   android:value="appid=xxx"> 
</meta-data>
<!-- Replace xxx with the actual payment ID, which can be obtained from the app's IAP information. --> -->
<meta-data
   android:name="com.huawei.hms.client.cpid"
   android:value="cpid=xxx">
</meta-data>

但是消息不断弹出,还有什么需要考虑的吗?此消息会在将来影响吗?

4

1 回答 1

2

感谢您提供有关此问题的信息。当 HMS 框架无法从 AppGallery 获取 AppID 时打印此E/HMSSDK_AGCUtils: Get appId with AGConnectServicesConfig failed消息,如果您的 App 尚未上传到 AppGallery,则显示此消息是正常的。然后框架会从agconnect-services.json文件或manifest.xml中获取AppID,该信息由框架自己使用,不会影响Map Kit的使用。

于 2021-11-19T03:31:49.213 回答