如何将google-play-services_lib添加到android studio

时间:2015-04-01 17:24:24

标签: android performance

我有一个项目需要google play服务作为依赖项,出于安全考虑,我无法从sdk manager下载它。而是给了我一个文件夹:google-play-services_lib

我如何将其添加到我的项目中?

1 个答案:

答案 0 :(得分:0)

在你的Project中,在APP中创建名为'libs'的文件夹,然后复制playservices的jar。这适用于Android Studio。

APP
 -libs
 -src
 -build

在你的构建中:

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile fileTree(dir: 'libs', include: ['*.so'])


    compile files('libs/NameOfJarGooglePlayServices.jar')



}