简体   繁体   中英

Add android library project to Android project in Android Studio

I have Android project (main) that has a dependency on Android-library (library) project. I have that in Eclipse where I added library project, but now I want to use Android Studio where I cant find similar option. Is it possible to do it by Gradle where I build library project and main project take that from local repository or I need Maven to do so and if I can then how?

Import your Eclipse library-project (eg Facebook library-project), then in your project's settings.gradle refer to Facebook project's module local path in this way:

include ':facebook'
project(':facebook').projectDir = new File(settingsDir, '../facebook/app')

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM