2

在测试和调试时,我使用了我的调试 API 密钥,现在我已经转移到我的发布 API 密钥并发布了应用程序。

显示地图加载和 GPS 位置(表明 API 密钥正确),但未显示图钉(注释)。我也收到以下错误:

08-12 15:50:42.315: E/GooglePlayServicesUtil(11478): The Google Play services resources were not found. Check your project configuration to ensure that the resources are included.

我已经检查过了,我有这个:

在此处输入图像描述

所以我以为一切都会好起来的。

也得到这个错误:

08-12 15:50:42.315: E/GooglePlayServicesUtil(11478): The Google Play services resources were not found. Check your project configuration to ensure that the resources are included.
08-12 15:50:42.325: E/log_tag(11478): Error in http connection android.os.NetworkOnMainThreadException
08-12 15:50:42.325: E/log_tag(11478): Error converting result java.lang.NullPointerException: lock == null
08-12 15:50:42.325: E/log_tag(11478): Error parsing data org.json.JSONException: End of input at character 0 of 

我尝试生成新密钥并跟踪下载的 JSON,一切似乎都很好。

4

1 回答 1

0

您正在尝试访问主线程上的网络。不要那样做,它会堵塞你的线程。

请参阅:如何修复 android.os.NetworkOnMainThreadException?

于 2013-08-12T15:08:18.363 回答