Radwa
Radwa

Reputation: 345

Create android module library from existing source

I want to create a module to include it on other applications.

Upvotes: 0

Views: 347

Answers (1)

OneCricketeer
OneCricketeer

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

Related Questions