2014-03-03 117 views
0

它在logcat中給我一個錯誤。我想我錯過了一些東西,當我加入庫項目...無法在android studio中使用谷歌播放服務

/GooglePlayServicesUtil﹕ The Google Play services resources were not found. Check your project configuration to ensure that the resources are included. 

我下面this指令。

我已將google play服務庫項目複製到libs文件夾。

我編輯過清單。我的build.gradle文件

dependencies { 
    compile 'com.android.support:appcompat-v7:+' 
    compile 'com.android.support:support-v4:+' 
    compile 'com.google.android.gms:play-services:4.2.42' 
    compile fileTree(dir: 'libs', include: ['*.jar']) 
} 

我還需要什麼?

編輯

<?xml version="1.0" encoding="utf-8"?> 
<manifest xmlns:android="http://schemas.android.com/apk/res/android" 
    package="com.example.dictionaryimporter.app" > 

    <uses-permission android:name="android.permission.INTERNET"/> 
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/> 
    <application 
     android:allowBackup="true" 
     android:icon="@drawable/ic_launcher" 
     android:label="@string/app_name" 
     android:theme="@style/AppTheme" > 
     <meta-data android:name="com.google.android.gms.version" 
      android:value="@integer/google_play_services_version" /> 
     <activity 
      android:name="com.example.dictionaryimporter.app.MainActivity" 
      android:label="@string/app_name" > 
      <intent-filter> 
       <action android:name="android.intent.action.MAIN" /> 

       <category android:name="android.intent.category.LAUNCHER" /> 
      </intent-filter> 
     </activity> 
     <service android:name="com.example.dictionaryimporter.app.WordsAddingService" /> 
     <activity android:name="com.google.android.gms.ads.AdActivity" 
      android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"/> 
    </application> 

</manifest> 

回答

0

您是否安裝了谷歌在SDK管理器中播放服務? 如果你有,你把它作爲一個庫(不添加項目引用,它是略有不同)

下面是一個例子

Android - Google Maps api via Google Play Services

+0

是的,我已經下載了它。 我應該如何「將它作爲圖書館?」 – user1685095

+0

對不起,我忘了我在android studio工作。所以我需要說明如何在AS中不做日食。我知道如何在日食中做到這一點。 – user1685095

+0

試試這個爲Android Studio:文件 - >項目結構 - >模塊 –

0

右擊你的項目名稱,然後選擇屬性> Android>添加> select-google-play-services按OK。

之後,在清單中添加MAP密鑰。

下面是一個完整的和非常有用的教程: http://www.androidhive.info/2013/08/android-working-with-google-maps-v2/

按照以下步驟,你不會有任何困難或錯誤。

+0

http://developer.android.com/google/play-services/setup.html#top 此頁面有關於Android Studio的所有細節。 –

+0

夥計們......真的......我已經讀過十次了。我看不到我做錯了什麼。 – user1685095

+0

@ user1685095在您的清單中必須包含「Google API密鑰」 –