它给我一个logcat错误。我想在添加图书馆项目时我错过了一些东西......
/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 :(得分:0)
您是否从SDK Manager安装了Google Play服务? 如果你有,你是否将它作为一个库包含(不添加项目参考,它略有不同)
这是一个例子
答案 1 :(得分:0)
右键单击项目名称,然后选择属性&gt; Android和GT;添加&gt; select-google-play-services按OK。
之后在清单中添加MAP密钥。
这是一个完整且非常有用的教程: http://www.androidhive.info/2013/08/android-working-with-google-maps-v2/
按照步骤操作,您不会遇到任何困难或错误。
答案 2 :(得分:0)
您好请检查您的清单文件,这应该将此部分作为
的子项 <application>
<meta-data android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version" />
...........
</application>
请检查网站http://instantiatorgratification.blogspot.in/2013/05/google-play-services-with-android-studio.html以获得许可。它可能有你的答案。