Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
208 views
in Technique[技术] by (71.8m points)

java - Android Studio: Adding a library outside of the project root

I have two projects, A and B, and would like to share some code between them via a library project, C. What is the proper way to do this such that:

  1. A and B and C are all in separate projects. (Not in the same directory at all)
  2. Changes to C are used in A or B automatically without re-importing C.

I'm fairly new to Android Studio and I've been running into all sorts of issues here. I really just want to use source code that is located outside the project root. Thanks!

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

This sounds like the question asked (and answered) here.

To sum up Scott Barta's answer:

settings.gradle:

include ':module-custom-lib'
project(':module-custom-lib').projectDir = new File(settingsDir, '../../../libraryProject/workspace/projectSrc')

A's and B's build.gradle:

dependencies {
    compile project(':module-custom-lib')
}

So, assuming a file structure like this:

+-- AndroidStudioProjects
|   +-- CoreLibs
|       +-- app (empty)
|       +-- myJavaCoreLib
|       +-- anotherJavaCoreLib
|   +-- AndroidApp1
|       +-- app
|   +-- AndroidApp2
|       +-- app
|   +-- AndroidApp3
|       +-- app

...the code would be:

settings.gradle:

include ':coreLib'
project(':coreLib').projectDir = new File(settingsDir, '../CoreLibs/myJavaCoreLib')

build.gradle in AndroidApp[1, 2 and 3] (your A's and B's):

compile project(':coreLib')

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

2.1m questions

2.1m answers

60 comments

56.9k users

...