我有一个项目需要google play服务作为依赖项,出于安全考虑,我无法从sdk manager下载它。而是给了我一个文件夹:google-play-services_lib
我如何将其添加到我的项目中?
答案 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')
}