and
and

Reputation: 351

How can I create custom packages with some classes like the android.app package

How can I create custom packages with some classes like the android.app package or etc. For example all the standard packages are in the Android.jar file. Is this possible for us to create something like the Android.jar file on side this Android.jar and using them together? I have Android studio 1.3.

Upvotes: 0

Views: 918

Answers (1)

David Heisnam
David Heisnam

Reputation: 2491

What you're looking to do is create a Library Project. To do that in Android Studio go to File > New Module > Android Library.

Here's a useful tutorial to teach you how to use the Library in other projects.

Upvotes: 2

Related Questions