Reputation: 345
I want to create a module to include it on other applications.
Upvotes: 0
Views: 347
Reputation: 191725
You can make a new Android/Java Gradle project (depending on your needs), then if you would like to use that as a library, you can go into the project settings and import the corresponding build.gradle
for that project/module.
You may additionally need to compile project
in your own Gradle file to actually pull in those classes to your project.
Upvotes: 1