Category Archives: Android

Configure Windows Live Custom Domains in Android

Tutorial: How to fetch your email from Windows Live Custom Domains 1. Go to Settings > Accounts > Add Account 2. Select Email 3. Fill in Username (username@domain) and Password. Click “Manual Setup” 4. Insert prefix \ before your username and blu-m.hotmail.com at server field.

Loading

Extract APK and decompile into Java source code

Decompiling apk to Dex format 1. Download Dex2Jar (Android runs applications which are in Dalvik Executable (.dex) format). 2. Run the command to convert apk to jar dex2jar targetapp.apk file(./dex2jar targetapp.apk on terminal) Viewing/Decompiling the Jar files to Java 1. Open ‘targetapp.apk.dex2jar.jar’ with jd-gui 2. File > Save All Sources to sava the class files in jar… Read More »

Loading