¡@

Home 

2014/10/16 ¤W¤È 08:25:25

android Programming Glossary: subprojects

How to build an android library with Android Studio and gradle?

http://stackoverflow.com/questions/16718026/how-to-build-an-android-library-with-android-studio-and-gradle

others. I put them in a directory maybe call it deps or subProjects. It doesn't really matter but you will need to know where you.. Directory Structure Project Root src see above subProjects where projects are held reallyCoolProject1 your first included.. app build.gradle settings.gradle settings.gradle include ' subProjects reallyCoolProject1' include ' subProjects reallyCoolProject2'..

How to build an android library with Android Studio and gradle?

http://stackoverflow.com/questions/16718026/how-to-build-an-android-library-with-android-studio-and-gradle

now we have one project to build. Now we are going to add the others. I put them in a directory maybe call it deps or subProjects. It doesn't really matter but you will need to know where you put it. To tell Gradle where the projects are you are going.. projects are you are going to need to add them to the settings.gradle. Directory Structure Project Root src see above subProjects where projects are held reallyCoolProject1 your first included project See project structure for a normal app reallyCoolProject2.. second included project See project structure for a normal app build.gradle settings.gradle settings.gradle include ' subProjects reallyCoolProject1' include ' subProjects reallyCoolProject2' The last thing you should make sure of is the subProjects..