[android-developers] Re: reading package name from apk file

2009-08-13 Thread Dianne Hackborn
Use the aapt command's dump subcommands. For example aapt dump badging /path./to/.apk will print various interesting meta-data about the app. On Wed, Aug 12, 2009 at 10:45 PM, Sudha sudhaker...@gmail.com wrote: Hello Zero, What i want is just knowing the package name I donot wish to

[android-developers] Re: reading package name from apk file

2009-08-13 Thread rk
Sudha, Do you have automated test solution for Andorid? thanks raj On Aug 13, 11:42 am, Dianne Hackborn hack...@android.com wrote: Use the aapt command's dump subcommands.  For example aapt dump badging /path./to/.apk will print various interesting meta-data about the app. On Wed, Aug

[android-developers] Re: reading package name from apk file

2009-08-13 Thread Sudha
hello rk, What am doing is not exactly automated test solution but partially yes. using ant scripts and tools in SDK like monkey (check below Link)... http://developer.android.com/guide/developing/tools/monkey.html I am generating some random input for testing games on Android Platform. -

[android-developers] Re: reading package name from apk file

2009-08-12 Thread Zero
dude, maybe you should not try to mess with other ppls code if u don't know basic reverse engineering. seriously. On Aug 12, 3:26 pm, Sudha sudhaker...@gmail.com wrote: Hello, If i have a apk file and want to know the package name and class hierarchy, how do i do it? Suppose I have some