如何导入谷歌API Android Studio中
我尝试过Android Studio。我想在我的项目中使用Drive API。在eclipse中,有一个Eclipse插件,但Android Studio如何?有没有人尝试过呢?如何导入谷歌API Android Studio中
回答:
你尝试
- 转到项目结构>全局库/库>链接到API的您在SDK文件夹
- 连结您的模块库需要的jar
回答:
我没有试过谷歌驱动程序,但我试过谷歌USB附件api。在我的情况 打开MyProject的/ MyProject的/的build.gradle
添加
compile files("libs/usb.jar")
到相关模块
当然,从
android-studio\sdk\add-ons\addon-google_apis-google-10\libs\usb.jar
到MyProject的复制谷歌的驱动库/ MyProject的/库
好运来您。
回答:
Java客户端库支持Android,以及。你可以在这里下载:https://code.google.com/p/google-api-java-client/wiki/APIs#Drive_API
然后,解压缩驱动器SDK下载和文件夹移动到项目的库部分。例如: /Users/-username-/AndroidStudioProjects/MyProject/MyProjectActivity/libs/
此时,可以通过单击文件 - >项目结构,然后单击库选项卡将库添加到项目中,和+号将SDK添加到您的项目中。
你可以阅读的谷歌API客户端库了Android特有的发展说明了Java的位置:https://code.google.com/p/google-api-java-client/wiki/Android
回答:
我是在相同的情况下,不得不在这里找到摇篮如何工作找到合适的有信息一套依赖和排除需要。 在这里,你的build.gradle文件
// Replace 'dependencies' in your build.gradle file with the following // or add these to whatever other dependencies you have.
dependencies {
compile 'com.android.support:support-v4:19.0.0'
compile 'com.google.android.gms:play-services:4.0.30'
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'
}
当他们在时间上不断变化的依赖性所需的线,我做了一个gist,我会不断更新的东西改变。
,我写了一篇文章修改的谷歌驱动器快速启动,使其与Android的工作室工作;如果有兴趣,你可以找到它here
编辑:这Gradle进口将使用Java的谷歌驱动器API,而不是Developer Preview Google Drive API集成与谷歌播放服务。
回答:
smokybob的答复工作,但后来我做了一些实验,这也为我工作。
dependencies { compile files ('libs/libGoogleAnalyticsServices.jar')
compile ('joda-time:joda-time:2.3')
compile ('com.google.code.gson:gson:2.2.4')
compile 'com.google.android.gms:play-services:4.1.+'
}
我猜测乔达时间和Gson与驱动器API无关。
注意当我做了
gradle dependancies
我得到
+--- joda-time:joda-time:2.3 +--- com.google.code.gson:gson:2.2.4
\--- com.google.android.gms:play-services:4.1.+ -> 4.1.32
\--- com.android.support:support-v4:19.0.1
回答:
从SDK管理器下多余的,我下载了谷歌播放服务,谷歌库和Android的支持库。此后,我包含如下的依赖项,与Gradle同步并能够访问这些API。
依赖关系编译fileTree(dir:'libs',include:['* .jar']) // Pls。通过SDK管理器安装或更新Google Repository以使用此依赖关系。 编译 'com.google.android.gms:播放服务:5.0 +。' }
回答:
娄你可以找到谷歌驱动器最后版本(2014年12月28日):
//Google Drive API compile 'com.google.android.gms:play-services:6.5.+'
compile 'com.google.api-client:google-api-client-xml:1.18.0-rc'
compile 'com.google.http-client:google-http-client-gson:1.18.0-rc'
compile 'com.google.api-client:google-api-client-android:1.18.0-rc'
compile 'com.google.apis:google-api-services-drive:v2-rev155-1.19.0'
要检查最后版本试试以下链接:
https://developer.android.com/google/play-services/setup.html
https://code.google.com/p/google-api-java-client
https://developers.google.com/api-client-library/java/apis/drive/v2
http://mvnrepository.com/artifact/com.google.apis/google-api-services-drive
以上是 如何导入谷歌API Android Studio中 的全部内容, 来源链接: utcz.com/qa/264975.html