您能提供一些指南如何创建DriveQuickStart Demo应用程序(https://developers.google.com/drive/quickstart-android,steps 2-3,steps 2-3)在Android Studio中?<<<<<<<<<<<</p>
问题是Android Studio找不到com.google.api。而且我在google-play-services.jar中都找不到它,而不是在Android SDK文件夹中。
我在Android Studio中使用"使用:Google API 17",我在SDK Manager中下载了所有最新更新(包括用于API17的Google API,Google Play Services,Google存储库)。
根据http://developer.android.com/google/play-services/setup.html我添加了
dependencies {
compile 'com.android.support:appcompat-v7:+'
compile 'com.google.android.gms:play-services:4.1.+'
}
在build.gradle中。我应该执行哪些其他操作来编译示例源代码,添加一些外部库?您已经为Eclipse提供了很好的详细步骤,但与Gradle有关Android Studio一无所知。
尝试将其添加到Project build.gradel,在Android Studio 0.4.3中为我工作同步,然后优化Windows中的Imports(Ctrl Alt O)。
compile 'com.android.support:appcompat-v7:19.0.1'
compile 'com.google.android.gms:play-services:4.1.32'
compile('com.google.api-client:google-api-client-xml:1.17.0-rc') {
exclude group: 'com.google.android.google-play-services'
}
compile 'com.google.http-client:google-http-client-gson:1.17.0-rc'
compile('com.google.api-client:google-api-client-android:1.17.0-rc') {
exclude group: 'com.google.android.google-play-services'
}
compile 'com.google.apis:google-api-services-drive:v2-rev105-1.17.0-rc'
信用转到用户@smokybob
在Quickstart中,您是否遵循步骤2中项目的所有?
特别是您错过了最后两个(令人困惑的编号1&amp; 2,将Google Client Libs安装到您的项目中。打开项目中的" libs"文件夹,并检查您是否有一堆客户libs为" googleapi-client.jar"。