使用 AGConnectServicesConfig 获取 appId 失败
Get appId with AGConnectServicesConfig failed
我对logcat中的这条留言有些疑惑:
E/HMSSDK_AGCUtils: Get appId with AGConnectServicesConfig failed
如果此错误或消息在查看 Maps Kit 地图时会显示,将来是否会带来问题?
我已经尝试过以下方法:
- 在build.grade
中没有应用agconnect插件
- 手动添加
<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>
但是一直弹出这个消息,还有什么需要考虑的吗?此消息会影响未来吗?
感谢您提供有关此问题的信息。
当HMS框架无法从应用市场获取AppID时打印E/HMSSDK_AGCUtils: Get appId with AGConnectServicesConfig failed
这个信息,如果你的应用还没有上传到应用市场,显示这个信息是正常的。
然后框架会从agconnect-services.json
文件或manifest.xml中获取AppID,这些信息是框架自己使用的,不会影响Map Kit的使用。
我对logcat中的这条留言有些疑惑:
E/HMSSDK_AGCUtils: Get appId with AGConnectServicesConfig failed
如果此错误或消息在查看 Maps Kit 地图时会显示,将来是否会带来问题?
我已经尝试过以下方法:
- 在build.grade 中没有应用agconnect插件
- 手动添加
<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>
但是一直弹出这个消息,还有什么需要考虑的吗?此消息会影响未来吗?
感谢您提供有关此问题的信息。
当HMS框架无法从应用市场获取AppID时打印E/HMSSDK_AGCUtils: Get appId with AGConnectServicesConfig failed
这个信息,如果你的应用还没有上传到应用市场,显示这个信息是正常的。
然后框架会从agconnect-services.json
文件或manifest.xml中获取AppID,这些信息是框架自己使用的,不会影响Map Kit的使用。