0

I have a project of which I want to make jar file. But this project needs some layout and some drawable.

If i will export jar file of source code how will i give support of layout and drawable in other projects where i will that jar as lib.

Please help with the same

user1169079
  • 3,053
  • 5
  • 42
  • 71

1 Answers1

0

You want an apklib.

I'm not sure if there is a way to bundle them up yourself unless you are using maven.

If you are using eclipse you can right click the project->properties->android and check "is library". Now you will be able to include that project as a dependency in other Android projects in your workspace :project->properties->android->add (in the library section at the bottom).

roflharrison
  • 2,300
  • 23
  • 26