I have a large major project with several sub projects in eclipse. Some sub projects have dependencies with major project.Now, I want to import these projects into Android Studio.I tried to export them use Eclipse and generate build.gradle
files. After that, I use Android Studio to import them. But there are some problems.
My sub projects can't find
.java
files in major project, so sub projects can't build successful.
So, what should I do to solve it? Forgive my poor English, thx.
Update: I found that the sub project is also a
com.android.application
and it seems that acom.android.application
(sub project) can't depends on othercom.android.application
(major project). What should I do?