How to decompile apk from Play Store

This is how you can decompile an application you have installed on your phone. My phone is rooted, uses RootBox 3.5 and has BusyBox installed. You may need to have that too if you want to follow my steps completly. Let's start: 1. Install application from market 2. Download apk to computer First you need to locate the apk on the phone. Connect to the phone: adb shell Find the apk in the folder the apk are downloaded to. It is ussualy in '/data/app/' or '/system/app/'. The apk is called as the id from the Play Store, for example 'com.something.someapp.apk'. You can see this in the url from Play. Next you need to pull it to the computer. Once you have located the apk and know it's name exit adb. On your PC execute: adb pull /data/app/com.something.someapp.apk 3. Transform apk to jar I use dex2jar dex2jar-0.0.9.11/d2j-dex2jar.sh com.something.someapp.apk 4. See the code inside the jar I use Java Decompiler Just open the

Religions with a sense of humor

I just love it when a religion has a sense of humor.
Discordianists are my favorite.
Today I came across The TriPrimality from subgenius:

The TriPrimality:
"Bob" is.
"Bob" becomes.
"Bob" is not.
Nothing is; Nothing becomes; Nothing is not. Thus: Nothing Is Everything.
  Therefore: Everything is "Bob."
Abracadabra.

"I don't practice what I preach, because I'm not the kind of person I'm preaching to."--Bob
You have to admit that is funny.
And I can't close without mentioning my favorite religious person, Robert Anton Wilson.

"Spectacles, testicles, brandy, cigars -- you're all popes! You're all absolutely infallible. I have the authority to appoint anyone a Discordian Pope, because I'm a Discordian Pope. The first rule after you become a Discordian Pope is to excommunicate every Discordian Pope you meet. This is based on the basic Discordian principle that we Discordians must stick apart."  - RAW

so, what can I say ?

"Spectacles, testicles, brandy, cigars -- you're all popes! "

Comments

Popular posts from this blog

Ways to map and query many-to-many in GORM

Update: Intellij 12 + Android Annotations 2.7 + maven

How to decompile apk from Play Store