ほとんどの人がここに持っていたのと同じ問題を抱えています...しかし、どのスレッドでも提供されているソリューションを使用して解決しようとしたとき、Android - 接続ファクトリクライアントを取得できませんでした
ここでは私の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を再確認しました時間とそれが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>
は、したがって、これらは、コア構成されている、と私はあなたが上記のコードに問題がないことに同意しなければならないと思います...しかし、なぜ、私は「Couldnを取得します接続ファクトリクライアントを取得しない」erro私がアプリケーションを実行すると、私はマップの外観を持っていますが、私はを使ってを返すと、私はLocationProvider.TEMPORARILY_UNAVAILABLEを返します。エラーメッセージ...
ビルドにGoogleのリビジョン10 APIを使用しています...この奇妙なケースについてのご意見はありますか?それは、debug.keystoreキーストアファイルのために発生する可能性がありますか?別のキーストアファイルをテストする必要がありますか?