Rad
Rad

Reputation: 11

Reference classes in Android APK

I'm working on test automation for an android app. We only receive an apk to test. The app uses some custom views. I need to reference the apk like a library so I can reference the classes in apk. How do I do it in eclipse?

I tried adding it to build path like a normal jar. Package explorer can see all the assets but none of the classes.

Upvotes: 1

Views: 534

Answers (1)

CommonsWare
CommonsWare

Reputation: 1006644

How do I do it in eclipse?

You don't. It is not possible. Demand the source code for the project you are testing.

Upvotes: 1

Related Questions