安卓 - 无法获取连接工厂客户端



我有同样的问题,我意识到大多数人都有在这里…但是当我试图使用任何线程上提供的解决方案来修复它时,我不能成功。

这是我的AndroidManifest.xml(我想这里没有问题-我知道有一些未使用的权限不注意):

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
      package="com.acilSRV.client"
      android:versionCode="1"
      android:versionName="1.0">
      <uses-sdk android:minSdkVersion="10" />
    <uses-permission android:name="android.permission.INTERNET"/>
    <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
    <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
    <uses-permission android:name="android.permission.ACCESS_MOCK_LOCATION"></uses-permission>  
    <application android:icon="@drawable/icon" android:label="@string/app_name">
        <uses-library android:name="com.google.android.maps"/>
        <activity android:name=".AcilActivity"
                  android:label="@string/app_name">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>    
</manifest>

我的main.xml(我已经重新检查了api key几次,它适用于debug.keystore):

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    >
    <TextView  
        android:layout_width="fill_parent" 
        android:layout_height="wrap_content" 
        android:text="Address info" 
        android:layout_marginBottom="20dp" 
        android:layout_marginTop="10dp" 
        android:id="@+id/txt_addressinfo"
        android:layout_marginLeft="5dp" 
        android:layout_marginRight="5dp"
    />
   <com.google.android.maps.MapView
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:enabled="true"
        android:clickable="true"
        android:apiKey="****"
        android:id="@+id/mapView"
    />
</LinearLayout>

所以这些是核心配置,我想你一定同意上面的代码没有问题…但是为什么当我运行应用程序时,我会得到"无法获得连接工厂客户端"错误消息-我有我的地图外观(证明api密钥合法性),但是当我使用geo fix 给我返回LocationProvider的不同位置时。TEMPORARILY_UNAVAILABLE,我猜我是因为上面的错误信息而得到的…

我正在使用Ant构建和Google Maps revision 10 api…对这个奇怪的案子有什么建议吗?会不会是调试造成的?Keystore Keystore文件?我必须测试另一个keystore文件吗?!

是的,问题不在你的代码中…但它在别的地方……如果你没有看过,也许你可以看看这个:在这里或

我也遇到了这个问题,这些链接可以给你一些关于这个问题的信息祝你好运:D

相关内容

  • 没有找到相关文章

最新更新