Android Studio 1.0.1 add external libraries

可紊 提交于 2019-11-30 11:47:46
Paritosh

First you have to add library project (module) in Android Studio

File -> Import Module

To add library project (module) in build path, click

File -> Project Structure

On the left hand side click on

app -> Dependencies tab -> green + button -> Module dependency

Now select the library project you already added.

For more details refer this link

In My Case to add external library project into android studio 1.1.0

step-1 : File -> Import Module -> set path for library project

step-2 : Set dependencies{} in main projects's build.gradle like,

dependencies {
    compile project(':facebookSDK')
    compile project(':slidingMenu')
    compile project(':SkyconsLibrary')
}
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!