它在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>
是的,我已經下載了它。 我應該如何「將它作爲圖書館?」 – user1685095
對不起,我忘了我在android studio工作。所以我需要說明如何在AS中不做日食。我知道如何在日食中做到這一點。 – user1685095
試試這個爲Android Studio:文件 - >項目結構 - >模塊 –