Hi, On Nov 17, 5:17 pm, Michael <[EMAIL PROTECTED]> wrote: > > I was lookin for a little help on how i could take a .apk and unpack > it if i wanted to alter the code. i see some really genius stuff out > there but i want to tweak it....
Tweaking other peoples' work is indeed an excellent way to learn the ins and outs of Android programming. But dismantling an APK isn't the way to go about it -- the APK only contains binaries, not the source code. You could try reverse engineering it, but I wouldn't recommend it. The place to start is the samples directory in the SDK -- the API demos in particular have source code for just about any individual thing you may want to do. Beyond that, look for people publishing source code for their apps. Try code.google.com and search for Android, for example. Hope this helps, Headstay --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en -~----------~----~----~----~------~----~------~--~---

