Anuj
Anuj

Reputation: 1200

Create jar from an android project

I want to make some changes to existing project and then generate jar for the project: https://github.com/loopj/android-smart-image-view

Is it possible to generate jar from this kind of project? I tried adding this project as an android project in eclipse but it cannot recognize it as an android project.

Upvotes: 0

Views: 104

Answers (1)

Ganesh AB
Ganesh AB

Reputation: 4698

Convert Android Project to Android Library Project. Build Project. You will get JAR of Android Library Project in bin folder of same app.

Eclipse converts Android Library Project to JAR using ANT.

enter image description here

Upvotes: 2

Related Questions