Reputation: 1200
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
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.
Upvotes: 2