Friday, January 10, 2014

How To Crack Android Application & Game

9:43 PM
How To Crack Android Application & Game

Setting up the Ground :
Well, it seems people are getting crazy about Android platform(everyone is trying to buy an Android phone!). lets see if I can get my hands dirty with this Linux+java clean room engineered platform.
To begin our journey we need Android SDK, a target to test with and the necessary tools.
You can download the necessary file from these locations:

Android SDK: http://developer.Android.com/sdk/index.html
Deurus Android crackme 03: http://crackmes.de/users/deurus/android_crackme03/
Smali and baksmali: http://code.google.com/p/smali/
Dex2jar: http://code.google.com/p/dex2jar/
Java decompiler: http://java.decompiler.free.fr/

Download and install Android SDK, SDK platform(latest is 2.2 at the time of writing), necessary Java packages and rest of the tools. Create a virtual device from SDK menu and start emulation. Within few minutes you can see the emulator booting up and showing the phone screen. Well, thats it! we have our emulator up and running.
Getting Started with the Game :
Now we need to install the software(crackme, its legal!) to the emulator. For that you may have to get acquainted with Android debug bridge(adb). Installing a apk file is pretty simple, all you have to do is to run two commands from Android SDK directory/tools.

After the installation you can see the crackme icon from application menu.
How To Crack Android Application & Game
Now run the crackme by clicking on it. If everything went as expected you will see the crackme application on the screen.
How To Crack Android Application & Game
Now we will play with it, pressing check button with no inputs pops a message 'Min 4 chars', and with a proper name it pops up 'Bad boy'. We have to remember these strings because we will be using them as our search keys when we disassemble the apk(actually dex) files. Also note that we have two hardware ids and we need to find out what those exactly means.
Real Android Reversing :
As our crackme is up and running in emulator, we now move onto reversing it. If you have read apk file format, you can visualize it as a extended JAR file which essentially is a zip file. Now you can change the crackme file name from Crackme03.apk to Crackme03.zip and decompress it to any folder.
How To Crack Android Application & Game
Now the interesting file for us is classes.dex, which contains the compiled vm codes. We are going to disassemble the dex file with baksmali. Commands are pretty simple as you can see from screen shots.
How To Crack Android Application & Game
If everything worked fine, we will have a folder structure similar to Java packages. Interesting .smali files are located at '\com\example\helloandroid'. Open all the .smali files into your favorite text editor(I use Notepad++). If you have never done anything related to reverse engineering/esoteric programming/assembly(IL) programming, you will probably think: WTF!. Relax. We have just opened a disassembled dex file. Now, if you are thinking how on earth someone can find the correct location of checking function, I hope you remember those pop up strings I told earlier. Yeah, 'Min 4 chars' and 'Bad boy'. Now we will use those strings as our search keys. Searching �Min 4 chars� in all the opened .smali files, we will find a hit in HelloAndroid$2.smali line 130.
How To Crack Android Application & Game
Our aim is to understand the serial checking function and write a keygen for it. For that we have to know all the dalvik opcodes that are used here. You can visit this page to understand the opcodes and after that you can convert disassembled code to much higher language constructs. I will provide a brief code snippet which actually implements the algorithm. Two hardware ids used are IMEI and sim serial number.

01 //Read name from text box
02 const v23, 0x7f050004
03 invoke-virtual/range {v22 .. v23}, Lcom/example/helloandroid/HelloAndroid;->findViewById(I)Landroid/view/View;
04 move-result-object v9
05 
06 //Read serial from text box
07 const v23, 0x7f050006
08 invoke-virtual/range {v22 .. v23}, Lcom/example/helloandroid/HelloAndroid;->findViewById(I)Landroid/view/View;
09 move-result-object v21
10 
11 //Checking whether the name is of length greate than 4
12 const/16 v22, 0x4
13 move v0, v11
14 move/from16 v1, v22
15 if-ge v0, v1, :cond_51
16 
17 //Popup showing Min 4 chars
18 const-string v23, "Min 4 chars"
19 const/16 v24, 0x1
20 .line 86
21 invoke-static/range {v22 .. v24}, Landroid/widget/Toast;->makeText(Landroid/content/Context;Ljava/lang/CharSequence;I)Landroid/widget/Toast;
22 move-result-object v13
23 .line 88
24 .local v13, notificacionToast:Landroid/widget/Toast;
25 invoke-virtual {v13}, Landroid/widget/Toast;->show()V
26 
27 //There is a little exception trick to make integer string from username
28 //It converts aaaa to 97979797 which is ascii equivalent
29 invoke-virtual {v10, v5}, Ljava/lang/String;->charAt(I)C
30 move-result v3
31 
32 //Getting first 5 chars from ascii converted name
33 const/16 v22, 0x0
34 const/16 v23, 0x5
35 move-object v0, v12
36 move/from16 v1, v22
37 move/from16 v2, v23
38 invoke-virtual {v0, v1, v2}, Ljava/lang/String;->substring(II)Ljava/lang/String;
39 
40 //Converting it into integer abd xoring with 0x6B016 - Serial part 1
41 invoke-static {v12}, Ljava/lang/Integer;->parseInt(Ljava/lang/StringI
42 move-result v22
43 const v23, 0x6b016
44 xor-int v22, v22, v23
45 
46 //Getting IMEI from TelephonyManager
47 //http://developer.Android.com/reference/Android/telephony/TelephonyManager.html
48 invoke-virtual {v8}, Landroid/telephony/TelephonyManager;->getDeviceId()Ljava/lang/String;
49 move-result-object v6
50 .line 102
51 .local v6, imei2:Ljava/lang/String;
52 
53 //Getting sim serial
54 invoke-virtual {v8}, Landroid/telephony/TelephonyManager;->getSimSerialNumber()Ljava/lang/String;
55 move-result-object v16
56 .line 103
57 .local v16, simsn:Ljava/lang/String;
58 
59 //Getting first 6 chars from IMEI, and similarly from sim serial (IMEI.Substring(0,6) will be used as Serial part 3)
60 const/16 v22, 0x0
61 const/16 v23, 0x6
62 move-object v0, v6
63 move/from16 v1, v22
64 move/from16 v2, v23
65 invoke-virtual {v0, v1, v2}, Ljava/lang/String;->substring(II)Ljava/lang/String;
66 
67 //Converting them to integer and xoring - Serial part2
68 invoke-static/range {v19 .. v19}, Ljava/lang/Integer;->parseInt(Ljava/lang/StringI
69 move-result v22
70 invoke-static/range {v20 .. v20}, Ljava/lang/Integer;->parseInt(Ljava/lang/StringI
71 move-result v23
72 xor-int v22, v22, v23
73 
74 //Making a new StringBuilder object and formatting the string to part1-part2-part3
75 new-instance v22, Ljava/lang/StringBuilder;
76 invoke-static {v12}, Ljava/lang/String;->valueOf(Ljava/lang/ObjectLjava/lang/String;
77 move-result-object v23
78 invoke-direct/range {v22 .. v23}, Ljava/lang/StringBuilder;-><init>(Ljava/lang/StringV
79 const-string v23, "-"
80 invoke-virtual/range {v22 .. v23}, Ljava/lang/StringBuilder;->append(Ljava/lang/StringLjava/lang/StringBuilder;
81 move-result-object v22
82 invoke-static/range {v17 .. v18}, Ljava/lang/String;->valueOf(J)Ljava/lang/String;
83 move-result-object v23
84 invoke-virtual/range {v22 .. v23}, Ljava/lang/StringBuilder;->append(Ljava/lang/StringLjava/lang/StringBuilder;
85 move-result-object v22
86 const-string v23, "-"
87 invoke-virtual/range {v22 .. v23}, Ljava/lang/StringBuilder;->append(Ljava/lang/StringLjava/lang/StringBuilder;
88 move-result-object v22
89 move-object/from16 v0, v22
90 move-object/from16 v1, v19
91 invoke-virtual {v0, v1}, Ljava/lang/StringBuilder;->append(Ljava/lang/StringLjava/lang/StringBuilder;
92 move-result-object v22
93 
94 //Checking whether user entered serial and program made serials are equal.
95 invoke-virtual {v14, v15}, Ljava/lang/String;->equals(Ljava/lang/Object


Real Android Reversing :
As our crackme is up and running in emulator, we now move onto reversing it. If you have read apk file format, you can visualize it as a extended JAR file which essentially is a zip file. Now you can change the crackme file name from Crackme03.apk to Crackme03.zip and decompress it to any folder.
How To Crack Android Application & Game
Now the interesting file for us is classes.dex, which contains the compiled vm codes. We are going to disassemble the dex file with baksmali. Commands are pretty simple as you can see from screen shots.
How To Crack Android Application & Game
If everything worked fine, we will have a folder structure similar to Java packages. Interesting .smali files are located at '\com\example\helloandroid'. Open all the .smali files into your favorite text editor(I use Notepad++). If you have never done anything related to reverse engineering/esoteric programming/assembly(IL) programming, you will probably think: WTF!. Relax. We have just opened a disassembled dex file. Now, if you are thinking how on earth someone can find the correct location of checking function, I hope you remember those pop up strings I told earlier. Yeah, 'Min 4 chars' and 'Bad boy'. Now we will use those strings as our search keys. Searching Min 4 chars in all the opened .smali files, we will find a hit in HelloAndroid$2.smali line 130.
How To Crack Android Application & Game
Our aim is to understand the serial checking function and write a keygen for it. For that we have to know all the dalvik opcodes that are used here. You can visit this page to understand the opcodes and after that you can convert disassembled code to much higher language constructs. I will provide a brief code snippet which actually implements the algorithm. Two hardware ids used are IMEI and sim serial number.
As you can see, the algorithm is pretty straight forward. It is using name and two hardware ids as input and doing some operations on them to make a serial. We can easily recode it in any programming language we prefer to make it as a keygen. Anyway, I am not posting any keygen sources as it will spoil the whole phun!
Decoding the Algorithm :
A demonstrative serial calculation routine is given below:
  • Code:
     Name: aaaaa
     HW ID1: 0000000000000000
     HW ID2: 89014103211118510720

Here are stepwise instructions on generating final serial number
At first 'aaaaa' will be converted to '9797979797', from which we will take first 5 letters and convert it into integer 97979
This will be xored with 0x6B016 resulting 511661 and this will be first part of serial.
For second part, we will take first 6 letters from HW ID1 and HW ID2, convert them to integer and xor, resulting 000000^890141 = 890141.
For third part we will use first 6 characters from HW ID1.
Formatting with the specified delimiter the serial will become '511661-890141-000000'.
Final Verification of Reversing :
Now we will put the same magic number into our Crackme application.

Bingo! everything worked as expected. Now, for all those who thinks it is pretty hard to read all those disassembled instructions and manually converting them to higher language constructs, there are other options. As dalvik is based on design of Java, it is also susceptible to decompilation. There is no decompiler available at this moment, but there is hope.
For now we can use another utility which converts dex files to jar files so that we can use Java decompilers to see much more abstracted code. From starting of this blog post you may have noticed the tool dex2jar. Use dex2jar to convert classes.dex to classes.dex.dex2jar.jar. Open it in a Java decompiler and you can see much better output than dalvik disassembly. Please note that dex2jar is still in development phase and the output is meaningless at many places. This should be used only to get a quick understanding of all the functions.
Conclusion :
In this introductory article, Dhanesh explains reversing Andriod using the emulator and all available tools in sequence with pictorial elaborative steps. It is mainly based to set up your ground for further reversing work on Andriod Platform.
Well, thats it! We have analyzed an Android program and defeated its protection. Cheerio!
Special How To Crack Gameloft Android HD Games Credit Goes to Djeman for Inventing This Method:
unpack an android package (apk) with a zip extractor, disassemble dex file in smali source files with dex2jar .
delete this {blue} line in the LicenseManagement.smali in the Billing folder.

  • Code:
if-nez v0, :cond_1
.line 224
const-string v0, "ANDROID BILLING"

const-string v0, "THIS IS A FULL VERSION PREVIOUSLY BILLED"
invoke-static {v2, v3, v0}, Lcom/gameloft/android/GAND/GloftRFHP/Billing/GLDebug;->debugMessage(ILjava/lang/String;Ljava/lang/String;)V

.line 225
invoke-static {}, Lcom/gameloft/android/GAND/GloftRFHP/Billing/LicenseManagement;->saveUnlockGame()V

move v0, v2
.line 230
:goto_1
return v0
.line 229
:cond_1
const-string v0, "ANDROID BILLING"

const-string v0, "THIS IS NOT A FULL VERSION!!!!"

So you have to delete the blue line, to avoid the game to jump to the read line (by deleting this line game will never show THIS IS NOT A FULL VERSION).
rebuild apk After that you need to sign it to run on your mobile.
SignApk - Sign Your APK Android File
http://developer.android.com/guide/p...p-signing.html
To understand Dalvik's commands more, you'll need that website
http://pallergabor.uw.hu/androidblog...k_opcodes.html
And if you want to go further, for the .so file, the ELF Dynamic library, you have to use IDA Pro to analyze it, and with ARM doc (Find it here) you'll be allowed to modify the file with a hexadecimal editor by calculating the ARM opcodes.
All information is provided for educational purposes only.

Call & SMS Reader v2.4.0

9:34 PM
Call & SMS Reader v2.4.0
Requirements: 2.2 and up
Overview: Get Call & SMS Reader with 13 professional Ivona voice included, 50 eSpeak voice included and no-adds. First application with professional voice included at no extra charge.
Call & SMS Reader v2.4.0
About Call & SMS Reader
Get Call & SMS Reader with 13 professional Ivona voice included, 50 eSpeak voice included and no-adds. First application with professional voice included at no extra charge.
● When you receive a message, Call and SMS Car Listen will read out the message content and sender name.
● When you receive a call, Call and SMS Car Listen will also read out the caller name.
● The a2dp and non a2dp bluetooth headset is supported in this application but may not work with all Android versions and all phones. It can also happen that it works in "Test settings" but not when you get a real call. This indicates that phone provider blocked this feature.
This system is very convenient not only when driving, but also when you are walking or your hands are not free to take the message or call. This contributes to higher safety on the road when messages or calls are coming in.
When you hear the message or call, you can immediately stop it speaking loud by turning the phone around if you are for ex. in a meeting, do not want to be disturbed or you cannot listen to it.
Text before and text after Caller/Sender and/or message can be manually set.
Nine languages are supported by default like in FREE version. The system also supports 13 professional voices from IVONA free of charge. You can find anddownload them with the system at no charge:
Australian English, US English, UK English, French, German, Icelandic, Italian, Polish, Romanian, Spanish US, Spanish, Welsh, Welsh English.
The system also supports 50 eSpeak voices from eSpeak free of charge. You can find and download them with the system at no charge:
African, Albanian, Armenian, Bosnian, Canadian (English), Canadian (French), Catalan, Chinese (Cantonese), Chinese (Mandarin), Croatian, Czech, Danish, Dutch, English (American), English (British), Esperanto, Finnish, French, German, Georgian, Greek, Greek (Ancient), Hindi, Hungarian, Icelandic, Indonesian, Italian, Japanese, Korean, Kurdish, Latin, Latvian, Macedonian, Norwegian, Polish, Portugese (Brasilian), Portugese (European), Romanian, Russian, Serbian, Slovak, Spanish, Spanish (Latin America), Swahihi, Swedish, Taiwanese, Tamil, Turkish, Vietnamese, Welsh.
The system also supports the following functions:
● Turn phone around to stop (stop speaking loud by turning the phone around)
● Launch on bluetooth (turns on, when phone is connected with bluetooth device)
● Launch at boot (turns on, when phone is restarted)
● Enable/Disable notifications in status bar
● Launch on bluetooth (turns on, when phone is connected with bluetooth device)
● Audio reading delay (starts reading out with 2 - 20 seconds' delay)
● Speech rate (reading rate: slower, slow, normal speed, fast, faster)
● Ignore Silent/Vibrate (message/call can be read although the phone is set to
Silent/Vibrate).
● Repetitions (number of repetitions when the phone is ringing)
● a2dp and non a2dp bluetooth headset support (may not work with some Android versions and some phones)
Keywords: Talking SMS, SMS, Caller ID, CallerID, Talking, Talking Caller ID, Voice Caller ID, enhanced caller id, talking message app, car sms, SMS reader, SMS listen, SMS speak, Call reader, Call listen, Call speak, speak SMS loud, speak Caller loud, SMS Car reader, SMS Car listen
Translations:
We want to translate this app into different languages, if you can help, please contact us.
TROUBLESHOOTING:
"Name or message not announced when I receive a text" - This is most likely due to another app installed on your device. Please follow the instructions below.
SETUP INFO FOR GOSMS, HANDCENT, VLINGO USERS:
● GO SMS >> Settings >> Advanced Tab >> Other Settings >> uncheck "Disable other message notification"
● HANDCENT >> Settings >> Application Settings >> Default Messaging Application >> choose "Disable" and then turn on "Lower priority"
● VLINGO, Within phone settings, change voice recognizer from Vlingo to Google Voice.
Recent changes:
version: 2.4.0
● Voice regulator
● New interface
● New Android support
● Better performance
● Fixed bugs
● New features
version: 2.3.2
● Voice regulator
● Only sender's name is announced feature
● Ignore hidden numbers
version: 2.3.1
● Save battery life
version: 2.3.0
● Program acceleration
● Start at boot
● Enable/Disable notification
● New language for Samsung phone added
● Voice regulator
Less description »
This app has NO advertisements
More Info:
Code:
https://play.google.com/store/apps/details?id=com.summusdevelopment.callandsmsreader

Download Instructions:
com-summusdevelopment-calla&hellip;zip (3,61 MB) - uploaded.net
Mirror:
Download com summusdevelopment callandsmsreader 240 zip
http://turbobit.net/ma6afhnv8q0i.html

Uncompressor v1.5

9:32 PM
Uncompressor v1.5
Requirements: 4.0.3 and up
Overview: Uncompressor is an app to extract compressed files. Uncompressor currently supports RAR, ZIP, TAR and BZIP2 formats.
Uncompressor v1.5
About Uncompressor
Uncompressor is an app to extract compressed files.
Uncompressor currently supports RAR, ZIP, TAR and BZIP2 formats.
Just browse to your files, make a long tap on any compressed one (will have different icon to easily location) and choose Extract. That's all.
You can unrar, unzip, untar and unbzip2.
Password protected ZIP and RAR files are also supported.
Multipart RAR files are also supported.
Be patience when extracting big files, let it finish! Even though you don't see activity, it's working. If something fails it will tell you.
Visit Website
This app has NO advertisements
More Info:
Code:
https://play.google.com/store/apps/details?id=com.xplota.uncompress

Download Instructions:
com-xplota-uncompress-15.zip (3,48 MB) - uploaded.net
Mirror:
Download com xplota uncompress zip
http://turbobit.net/532ckv6rigks.html

Talking Emily Baby - AdFree v2.8

9:31 PM
Talking Emily Baby - AdFree v2.8
Requirements: 2.2 and up
Overview: Talk to Talking Emily Baby. She answers with her funny voice and reacts to what you say or your touch. With 8 exciting inside games and a lot ofextra content!
Talking Emily Baby - AdFree v2.8
About Talking Emily Baby - AdFree
Talk to Talking Emily Baby. She answers with her funny voice and reacts to what you say or your touch. With 8 exciting inside games and a lot of extra content!
★★★ Features: ★★★
✔ High quality 3D graphics
✔ Cool voice interaction
✔ Piano with singing Emily
✔ Many different animations
✔ Amazing sound board
✔ Fun for all
Extra content:
★ Exciting touch game with 20 levels inside
★ House game
★ Great numbers game
★ 1to60 game
★ Comics & Cartoons: It contains many funny scenes.
★ Jokes Collection
★ General knowledge:
Do you know everything about geology, biology, environment, history, science etc.? Ask your friends and check what they know.
★ Photo Fun:
Create funny and fake images/pictures and send per mail, share pictures with Whatsapp, Twitter, another Messenger Tool or upload them to Facebook. Upload your pics and turn yourself or your friend a cat, a sweet baby, a dog, a mouse, etc.
★ Stickers
Give your pictures a personal touch. It contains stickers with various subjects like, hats, wigs, sunglasses, mouth, etc. Let your pictures communicate something or create some comics by writing some fun stuff into bubbles.
★ Kids paint: Super entertaining tool to try and draw a picture with your fingertip. There are also a lot of predefined cartoon pictures that can be colored such as birds, a turtle, frog, aliens, planets and many more. Discover the artist in you!
★ Pairs: Find the same looking images on the board and train your memory with this cool match-2 game.
★ Sliding puzzle: Touch and slide the pieces of the puzzle where they belong to recreate the original image.
★ Pair Up: Match up the pictures that belong together (that have something in common).
★ Two Players Super Duel: Challenge your friends and discover who has got the faster reflexes.
★ Quiz: Put your general knowledge to test.
This app is a Premium version of Talking Emily Baby which means without ads.
Recent changes:
- Functionality update
- Performance improvement
Visit Website
Less description »
This app has NO advertisements
More Info:
Code:
https://play.google.com/store/apps/details?id=com.kauf.talking.baum.TalkingEmilyBabyAdFree

Download Instructions:
com-kauf-talking-baum-talki&hellip;zip (25,50 MB) - uploaded.net
Mirror:
Download com kauf talking baum talkingemilybabyadfree zip
http://turbobit.net/t9h5j1ietwpn.html

Office Calculator Pro v4.0.0

9:30 PM
Office Calculator Pro v4.0.0
Requirements: 1.6 and up
Overview: Office calculator with a virtual tape for Android, fixed point or floating point mode,
various rounding modes, easy percent and tax calculation. This is a calculator optimized for office tasks.
Office Calculator Pro v4.0.0
About Office Calculator Pro
Office calculator with a virtual tape for Android,
fixed point or floating point mode,
various rounding modes, easy percent and tax calculation.
This is a calculator optimized for office tasks.
* Calculator with virtual tape
You can switch between calculator view and and tape view to have a full screen view of the tape.
Just tap on the tape to switch between views.
The tape of the calculator can have up to 1000 lines.
* Calculator support corrections on the tape
You can change values on the virtual tape to make corrections.
For corrections go to the context menu of the tape line with a long press.
* Calculator has percent calculation to add or subtract percent values.
The tape will display the percentage and the resulting value.
* Calculator has tax buttons (TX+, TX-) to add or sub tract tax (sales tax, VAT)
This makes it very easy to calculate tax amounts with the calculator.
The tape will display the tax rate and the resulting value.
* Calculator allows annotations on the tape
You can write a comment to a tape line.
* Calculator with fixed point arithmetic or floating point.
Fixed point arithmetic has 20 digits and 0 - 4 decimal places.
The floating point arithmetic has 64 bits (IEEE double precision).
By default, the calculator works with fixed point arithmetic and 2 decimal places as needed for most calculations with amounts.
* Calculator supports three rounding modes: up, down or 5/4.
This is the Pro variant of Office Calculator, a Free variant with ads is also available.
Recent changes:
- Tax buttons to add or subtract tax
- Parentheses
- Physical keyboard can be used for input
- Layout optimization for Nexus 7 and similar sized devices
Performance improvement: avoid unnecessary screen updates
Bug fix when mixing fixed point, floating point numbers in M+ or M- operation
Visit Website
Less description »
This app has NO advertisements
More Info:
Code:
https://play.google.com/store/apps/details?id=net.taobits.officecalculator.android.pro

Download Instructions:
net-taobits-officecalculato&hellip;zip (3,57 MB) - uploaded.net
Mirror:
Download taobits officecalculator android pro 400 zip
http://turbobit.net/cd2z490c5eij.html

Android 9-Patch Viewer v1.00.19

9:28 PM
Android 9-Patch Viewer v1.00.19
Requirements: 2.1 and up
Overview: 1000+ royalty free 9 patch images! This is a developer productivity tool used to browse a large collection of 9-patch images. 2 Browsing modes are now offered. The original layout test mode and the new grid view mode.
Android 9-Patch Viewer v1.00.19
About Android 9-Patch Viewer
Price recently reduced!
1000+ royalty free 9 patch images!!!
This is a developer productivity tool used to browse a large collection of 9-patch images.
2 Browsing modes are now offered. The original layout test mode and the new grid view mode.
9 Patches are now displayed on checker board pattern.
The collection found in this application is conveniently packaged for viewing and sharing.
The images can be used for developing any Android applications, including commercial projects.
9-Patch images can be shared via email or other sharing applications installed on the device already.
------------------------
Here is the list of packs (24 total so far) included in this version:
Android 9 patch - pack 1
Android 9 patch - pack 2
Android 9 patch - pack 3
Android 9 patch - pack 4
Android 9 patch - pack 5
Android 9 patch - pack 6 - fun with bevel
Android 9 patch - pack 7 - large gradients
Android 9 patch - pack 8 - special request
Android 9 patch - pack 9 - callouts!!!
Android 9 patch - pack 10 - 73 PNGS this time!
Android 9 patch - pack 11 - 19 HUES x 3 states
Android 9 patch - Pack 12 - gel shinny buttons x 19 HUES
Android 9 patch - Pack 13 - white border buttons x 19 HUES
android 9 patch - pack 14 - Button with 9 different HUES
android 9 patch - pack 15 - Glass Madness - 98 glass "9-patch PNGs"
android 9 patch - pack 16 - More frames?
Android 9 patch - pack 17
Android 9 patch - pack 18 - button series
Android 9 patch - pack 19 - more buttons
Android 9 patch - pack 20 - buttons with 5 state and 19 hues
Android 9 patch - pack 21
Android 9 patch - pack 22
Android 9 patch - pack 23
Android 9 patch - pack 24
Android 9 patch - pack 25
------------------------
Features:
- 1108 Royalty free images! Use them in your commercial apps!
- Convenient image gallery browsing. Select multiple 9-patch before sharing them!
- Sample layout used to test the images including a background, a main view and text view and a button.
- Sharing feature so the user can send these images via email, Picasa or any other already installed application.
- Works in both portrait and landscape mode.
- Screen Layout supported: SMALL NORMAL LARGE XLARGE
- Tested on Galaxy S, Galaxy Tab, Galaxy Tab 10.1, Motorola Xoom, Iconia tab A100
- Only requires write external permissions to share files.
- New file will be added to this application as they become available on the website. Expect frequent updates with new 9-patch images.
-Sharing feature now preserves complete filename!
-Sharing feature also preserves scale and padding markers!
For more details see: Android 9 patch
Would love your feedback! New additions or feature request!
Recent changes:
-Added Pack 25 with 65 new 9 patch images!
Visit Website
Less description »
This app has NO advertisements
More Info:
Code:
https://play.google.com/store/apps/details?id=com.android9patch.viewer

Download Instructions:
com-android9patch-viewer_10&hellip;zip (3,45 MB) - uploaded.net
Mirror:
Download com android9patch viewer 10019 zip
http://turbobit.net/cciivtvj4mjc.html

Encyclopedia Pro (Wikipedia) v1.0.12

9:26 PM
Encyclopedia Pro (Wikipedia) v1.0.12
Requirements: 2.1 and up

Overview: Wiki Encyclopaedia Pro Offline presents Wikipedia ®, conveniently formatted and speeded up for your Android device - even without an internet connection!
This Pro Offline version includes one downloadable Expert Offline Wiki database for free, from a selection of 30 languages. If you require further languages, these can be purchased separately.
Encyclopedia Pro (Wikipedia) v1.0.12
* Take all the Wikipedia knowledge with you even without an internet connection, with Android's ONLY app to offer over-the-air downloadable offline databases in over 30 languages!
* Make reading Wikipedia fun with our random article function right from the first page of the app!
* Discover meaningful encyclopedia articles and learn more about your surroundings with Wiki Encyclopaedia Pro's "articles near me" feature
- Pre-set the languages you use the most as your "favourite languages", then easily switch language to read the same Wikipedia article in one of those languages!
- Switch and search between online or offline Wikipedia Encyclopedia, or online Wiktionary ® dictionary
* Wiktionary dictionary allows you to search for words in any language and will provide the translation to that word as well as the meaning! It is a perfect two-in-one dictionary and translator.
- Suggest/Autocomplete feature for faster searching
- Show/Hide Wikipedia editing tools for contributing to Wikimedia's project
- "Search on page"
- Day/Night mode settings (Black text on white background or white text on black background)
- Share articles directly from your Wiki app
- Mobile/Desktop mode
- Set Text Size
- Save Wikipedia or Wiktionary dictionary article to SD / Reading list
- Great for education: school, university, learning and researching, homework etc.
The app uses your phone's location sensors including GPS if active, in order to locate you and provide the "articles near you" functionality.. this shows geo-referenced articles that refer to landmarks, buildings, or events with specific locations.
Wikipedia Encyclopedia with offline databases is a back to school or back to university essential reference!
Supported Wikipedia languages include: English, Nederlands, Deutsch, Svenska, Français, Italiano, Español, Русский, Polski, Tiếng Việt, 日本語, Winaray, Sinugboanong Binisaya, Português, 中文, Українська, Català, Norsk (Bokmål), Suomi, فارسی, Čeština, 한국어, Magyar, العربية, Română, Bahasa Melayu, Српски / Srpski, Minangkabau, Türkçe, Bahasa Indonesia, Қазақша, Slovenčina, Esperanto, Dansk, Lietuvių, Euskara, Български, עברית, Hrvatski, Slovenščina, O‘zbek, Volapük, Eesti, हिन्दी, Galego, Nynorsk,
Any problems, please email us!
What's New:
- various fixes

This app has no advertisements

More Info: https://play.google.com/store/apps/details?id=uk.co.appsunlimited.wikiplatinum
Download Instructions:Released by Yuki918
Download Wiki Encyclopedia Platinum apk
mirror:
Download Wiki Encyclopedia Platinum apk
Download Wiki Encyclopedia Platinum apk

Flash Notification + v1.7.5

9:25 PM
Flash Notification + v1.7.5
Requirements: 2.2 and up
Overview: # This is a Ad free and Plus Version of [Flash Notification for All App]
Flash Notification + v1.7.5
------------- NOTICE ---------------
# Please MAKE SURE that [Flash Notification for All App] Free version works on your device BEFORE purchase this.
# No refund for that reason do not work
# Remove free version after this is installed
------------------------------------------
# This is a Ad free and Plus Version of [Flash Notification for All App]
What's New
Ver 1.7.4
- Improved performance of App List Screen
- Added 2 more flash type
Ver 1.7.3
- Added 0.1 ~ 0.9 sec in Duration(sec)
PACKAGE NAME: "com.manzy.flashnotificationplus"
This app has NO advertisements
More Info:
https://play.google.com/store/apps/d...tificationplus
Download
Download com manzy flashnotificationplus apk
Download com manzy flashnotificationplus apk
Download com manzy flashnotificationplus apk

Archos Video Player v7.5.30

9:22 PM
Archos Video Player v7.5.30
Requirements: Android v4.0.3+
Overview: ARCHOS makes Video Player app available for all Android tablets and phones (requires Android 4.0 or later)!
Archos Video Player v7.5.30
The critically acclaimed Archos video player app offers an uncompromised multimedia experience.
- Hardware accelerated video decoding support for most devices and video formats;
- Ability to play content from any computer/network storage in your local network (SMB and UPnP) or from an external USB storage device;
- Automatic online retrieval of Movie and TV show information with poster and backdrop for both local and network content;
- Integrated subtitle downloader;
- Network indexing: import remote shared folders (SMB) in your multimedia library;
- Video browsing with either folder or library based navigation;
- Ubiquitous access to TV shows sorted in a series/season/episode hierarchical view;
- Multi-device network video resume;
- TV friendly: Keyboard/remote control compatible.
* Note that if you experience any issue with video hardware decoding you can force software decoding in Archos Video Player application settings to watch your video.
What's in this version :
7.5.30 - January 9th, 2014
- Fix being set back to root folder after entering credentials for network share
- Fix various crashes
7.5.29 - December 19th, 2013
- Improve carousel cover quality on low-density screens
- Smoother audio boost
- Fix video freeze when another application is on foreground
7.5.27 - December 9th, 2013
- Fix crash on Android 4.4.1
- Fix sound issues on some devices
This app has NO advertisements
More Info:
Code:
https://play.google.com/store/apps/details?id=com.archos.mediacenter.video

Download Instructions:
com-archos-mediacenter-vide&hellip;zip (7,03 MB) - uploaded.net
Mirror:
Download com archos mediacenter video 7530 zip
http://turbobit.net/reaojo4jjiyy.html

Call & SMS Reader v2.0.4

9:21 PM
Call & SMS Reader v2.0.4
Requirment: 2.2 and up
Overview:Get Call & SMS Reader with 13 professional
Call & SMS Reader v2.0.4
Ivona voice included, 50 eSpeak voice
included and no-adds. First application with
professional voice included at no extra
charge.
● When you receive a message, Call and SMS
Car Listen will read out the message content
and sender name.
● When you receive a call, Call and SMS Car
Listen will also read out the caller name.
● The a2dp and non a2dp bluetooth headset
is supported in this application but may not
work with all Android versions and all phones.
It can also happen that it works in "Test
settings" but not when you get a real call.
This indicates that phone provider blocked
this feature.
This system is very convenient not only when
driving, but also when you are walking or
your hands are not free to take the message
or call. This contributes to higher safety on
the road when messages or calls are coming
in.
When you hear the message or call, you can
immediately stop it speaking loud by turning
the phone around if you are for ex. in a
meeting, do not want to be disturbed or you
cannot listen to it.
Text before and text after Caller/Sender and/
or message can be manually set.
Nine languages are supported by default like
in FREE version. The system also supports 13
professional voices from IVONA free of
charge. You can find and download them with
the system at no charge:
Australian English, US English, UK English,
French, German, Icelandic, Italian, Polish,
Romanian, Spanish US, Spanish, Welsh, Welsh
English.
The system also supports 50 eSpeak voices
from eSpeak free of charge. You can find and
download them with the system at no charge:
African, Albanian, Armenian, Bosnian,
Canadian (English), Canadian (French),
Catalan, Chinese (Cantonese), Chinese
(Mandarin), Croatian, Czech, Danish, Dutch,
English (American), English (British),
Esperanto, Finnish, French, German, Georgian,
Greek, Greek (Ancient), Hindi, Hungarian,
Icelandic, Indonesian, Italian, Japanese,
Korean, Kurdish, Latin, Latvian, Macedonian,
Norwegian, Polish, Portugese (Brasilian),
Portugese (European), Romanian, Russian,
Serbian, Slovak, Spanish, Spanish (Latin
America), Swahihi, Swedish, Taiwanese, Tamil,
Turkish, Vietnamese, Welsh.
The system also supports the following
functions:
● Turn phone around to stop (stop speaking
loud by turning the phone around)
● Launch on bluetooth (turns on, when phone
is connected with bluetooth device)
● Launch at boot (turns on, when phone is
restarted)
● Enable/Disable notifications in status bar
● Launch on bluetooth (turns on, when phone
is connected with bluetooth device)
● Audio reading delay (starts reading out
with 2 - 20 seconds' delay)
● Speech rate (reading rate: slower, slow,
normal speed, fast, faster)
● Ignore Silent/Vibrate (message/call can be
read although the phone is set to
Silent/Vibrate).
● Repetitions (number of repetitions when
the phone is ringing)
● a2dp and non a2dp bluetooth headset
support (may not work with some Android
versions and some phones)
Keywords: Talking SMS, SMS, Caller ID,
CallerID, Talking, Talking Caller ID, Voice
Caller ID, enhanced caller id, talking message
app, car sms, SMS reader, SMS listen, SMS
speak, Call reader, Call listen, Call speak,
speak SMS loud, speak Caller loud, SMS Car
reader, SMS Car listen
Translations:
We want to translate this app into different
languages, if you can help, please contact us.
TROUBLESHOOTING:
"Name or message not announced when I
receive a text" - This is most likely due to
another app installed on your device. Please
follow the instructions below.
SETUP INFO FOR GOSMS, HANDCENT, VLINGO
USERS:
● GO SMS >> Settings >> Advanced Tab >>
Other Settings >> uncheck "Disable other
message notification"
● HANDCENT >> Settings >> Application
Settings >> Default Messaging Application >>
choose "Disable" and then turn on "Lower
priority"
● VLINGO, Within phone settings, change
voice recognizer from Vlingo to Google
Voice.
More Info:
https://play.google.com/store/apps/d...msreader&hl=en
Download:
Download Call SMS Reader apk
Mirror
Download Call SMS Reader apk
Download Call SMS Reader apk
Download Tutorial: "KINGFILES" | "HULKLOAD"

Browser for SkyDrive v2.1.2

9:20 PM
Browser for SkyDrive v2.1.2
Requirements: 2.2 and up
Overview: This is a Android SkyDrive client. It is not a viewer. support to manage files on SkyDrive.
Browser for SkyDrive v2.1.2
About Browser for SkyDrive
== Store 7 GB in SkyDrive from Your Android Device ==
This is a Android SkyDrive client.
It is not a viewer. support to manage files on SkyDrive.
Microsoft’s SkyDrive service is a nice chunk of cloud storage—7 GB, to be exact. Now you can view, download, and send your files in SkyDrive from your Android phone with Browser for SkyDrive.
You can download and upload and browsing the SkyDrive.
< Supported >
* Safety Login - It is done through the Microsoft's Live web site so we never know your email or password.
* multi-selection
* Upload / Download - Background or Interactive
* Create folder
* Send a Link
* Dual-pane
* Thumbnails View(Grid view)
* Share to - by other APPs (like Gallery)
* Shared folder browsing (Read and download only)
* Below functions are not supported SkyDrive API.
- Mesh service(Sync folder).
- Group Folder
- Upload Audio files
Refer this - SkyDrive core concepts (Live Connect)
< Usage >
1. first time, you need to login from Menu.
2. after you login, you can access SkyDrive.
3. If you don't want to use SkyDrive anymore. You should logout it.
Please read, How to use the buttons.
Soul Movie Software :: How to use 'Browser for SkyDrive'
Are you Dropbox user?
https://play.google.com/store/apps/d...dropboxbrowser
**=======**
If you need a new feature, please mail me.
I will try to implement your needs ^^
---- Translation Project ------
Give your hand to localize 'Browser for SkyDrive'
Translate 'Browser for SkyDrive'in your language. It would be helpful to people all over the world.
If you want to join to the 'Browser for SkyDrive' Translation Project, please mail me(mbyn33@gmail.com) to get the permission to access the files
Recent changes:
* ver 2.1.2
- Fixed to lost the selection when change the screen to other windows
* ver 2.1.0
- Support all file type
- Improve folder upload speed
- Add upload fail item to upload list
- Automatically restart file transmission when reconnect Wi-Fi
- Fixed to not work on Android 2.2
* ver 2.0.1
- Updater Ad modules
* ver 2.0
- Add sort at Pop-up menu
- Distinguish to sort by folder/file
* ver 1.9.9
- Minor bug fix
* ver 1.9.7
- Improve to share from other APP
Visit Website
Less description »
This app has banner advertisements
More Info:
Code:
https://play.google.com/store/apps/details?id=com.bolero.skydrivebrowser

Download Instructions:
com.bolero.skydrivebrowser-&hellip;zip (3,56 MB) - uploaded.net
Mirror:
Download com bolero skydrivebrowser zip
http://turbobit.net/tijg3ehtfys7.html

Tactile Player - Music Control v3.0.1

9:18 PM
Tactile Player - Music Control v3.0.1
Requires Android: 2.1+
Overview: Control your music player with your phone's
volume and power buttons! Finally you don't
have to take out your phone, unlock the
screen, and navigate to your music player just
to change the song. With Tactile Player you
can change the song just by using your
phone's volume and power buttons, even in
your pocket.
Tactile Player - Music Control v3.0.1
Double Press the volume UP key for NEXT.
Double Press the volume DOWN key for
PREVIOUS.
Triple Press the Power key to toggle PAUSE/
PLAY. (You can change this to double press or
never if you like).
Simple as that.
These controls are now modular so you can
make the volume down action trigger next or
the power button trigger previous, it's up to
you!
Tactile Player supports most stock players
(the "Music" app) along with third party
media players such as:
PowerAMP, Pandora, Google Music, Google
Listen, doubleTwist, PlayerPro, Amazon MP3,
Mixzing, and most other popular media
players.
This full version also comes with a widget so
you can easily turn the service on and off
anytime.
Now you can use your favorite music player
and control it with your phone's tactile
buttons, thanks to Tactile Player. Try it out.
Note: You can turn the service off anytime,
just open the app, press the off button, then
close the app.
Note: Samsung users using the default music
player on your phone, please select the
"Simulate Headset Option" in the Choose a
media player setting.
If you have any problem using the service,
please email us at: purelogicapps@gmail.com .
Please, please come back to rate the app!
Thanks!
Keywords and phrases: control music with
phone buttons, change song with buttons,
nextsong, next song with phone keys, pause
play phone buttons, control music media with
buttons, control music with tactile buttons,
media buttons, media keys, next song with
phone buttons, previous phone keys, change
song without looking unlocking, change song
in your pocket, skip track in pocket.
What's New
Version 3.0 is out!
-There is now an option to automatically
detect and use the most recently opened
media player.
-Added an option to start the service on
boot.
-Added an option to only work when
headphones are plugged in.
-You can now choose what the power button
and volume button actions do!
-Added fast forward and rewind actions (only
works with some media players).
-Added an option for Android 4 users to fix a
bug when the actions trigger after only 1
volume press.
-New icon and UI!
More Info:
https://play.google.com/store/apps/d....tactileplayer
Download:
Download Tactile Player Music Control apk
Mirror:
Download Tactile Player Music Control apk
Download com purelogicapps android tac.apk
Download Tutorial: "KINGFILES" | "HULKLOAD"

History Eraser Pro - Clean up v5.3

9:17 PM
History Eraser Pro - Clean up v5.3
Requirements: Android 1.6+
Overview: This is the ad free version of History Eraser! One touch cleaner! History Eraser can erase history data on your Android device, cleanup your phone, delete your search history, remove your calllog, delete sms, clean your clipboard, clear all apps' cache files, clear frequently callded, and erase market search history. It is similar to ccleaner on the pc.
History Eraser Pro - Clean up v5.3
It's a history eraser for android device, and it can clean history of apps by only one tap. It's similar to the "ccleaner" on PC. It can help you to protect your privacy, and it can also help you to free up the internal storage. No root premission required!
Feature:
★Clear Browser History
★Clear Call Log
★Clear text messages
★Clear Market Search History (including new android market history of v3.0.26+)
★Clear Google Map Search History
★Clear Gmail Search History
★Clear Clipboard Data
★Clear Youtube Search History (assist)
★Clear Google Search History(Android >= 1.6) (assistance)
★Clear all app cache files
★Clear Frequently Called (Frequently Contacted)
Feel free to send feedback to us other than 1 star!!
If forceclose happens, please use our another app named 'App Cache Cleaner' to do a clean-all action, and then open History Eraser again
#How to clean your Google Map history
If your Google Map history still comes out after clean, please visit http://www.google.com/history to disable the history records for your Google account.
***************************
INFOLIFE, Make Life Easier!
***************************
----version 2.5.5 changes:
1.add sms clear options to one touch clear list
now we can seperately del 4 kinds of thread,including:
a) Sent SMS/MMS
b) Received SMS/MMS
c) Failed SMS/MMS
d) SMS/MMS Draft
By using setting menu, you can alse choose not to del sms/mms when screen off or you can choose not to delete locked/protected sms/mms
----version 2.5 changes:
1.add auto clear and preference setting
you can have schedule clear by menu-> setting -> select Clear When Screen Off.It will auto execute your last clear operation when screen off.
you can also set notification bar icon here and turn on phone rom memory statistics display.
2.add frequently called (Frequently Contacted) clear
some devices have a frequently called list in favorites tab.now the delete operation of this list is available.
3.add phone memory status showing
show your phone rom memory statistics.you can see how much memory freed after clear.
4.use new text message deletion and move this function to menu options
txt message deletion option moved to menu,you can delete all of your sms/mms by menu-> Del All SMS/MMS,Be ware that ALL of your text message will be deleted even if they are locked!
5.add option to show notification bar
you can show notification bar to have a quick switch.to enable this:
menu->Setting->check Notification Bar Icon.
6.adjust item display order.
move clear all apps cache function to the top of the list.
***Features under development***
1,contacts history or sms history in motorola phones:
Motorola doesn't share their communication logs with other apps,I am still working on it to figure out a way to clear this history.
To help us translate thiss app to your native language, please sign up in http://crowdin.net/project/history-eraser
thank you very much
Note: all premium features available.
This app has NO advertisements
More Info:
Code:
https://play.google.com/store/apps/details?id=mobi.infolife.eraser

Download Instructions:
Download mobi infolife eraserpro 4728653 e5a820cbbcb73703f19eaa5c807bc821 apk
Mirror:
Download mobi infolife eraserpro 4728653 e5a820cbbcb73703f19eaa5c807bc821 apk
Download mobi infolife eraserpro 4728653 e5a820cbbcb73703f19eaa5c807bc821 apk
Download Tutorial: "KINGFILES" | "HULKLOAD"

Angel Browser v12.21z

9:15 PM
Angel Browser v12.21z
Requirements: Varies for Device
Overview: Angel Browser is a multifunctional, convenient browser.
Angel Browser v12.21z
Angel Browser is a multifunctional, convenient browser.
-Tabbed browsing
-All-in-one search
-Export/Import Google Bookmarks
-Export/Import bookmarks
-Bookmarks Sort
-UserAgent switcher
-View Source
-Text/web trans/dict
-Show PageRank
-Screen shot
-Read Later
-Facebook Like button
-Full screen
-Sensor auto scroll
-Show Cursor
-Tab History
-Gesture
-Custom menu
-Speed Dial
Whats New:
-Bug fixes
This app has NO advertisements
More Info:
Code:
https://play.google.com/store/apps/details?id=net.adgjm.angel

Download Instructions:
net.adgjm.angel-16107-v12.2&hellip;zip (3,50 MB) - uploaded.net
Mirror
Download adgjm angel 16107 v12 21z zip
http://turbobit.net/4eld2jdmsl1h.html

White Noise FULL v5.6.1

9:14 PM
White Noise FULL v5.6.1
Requirements: 1.6 and up
Overview: Relax. Sleep Better. Feel Better. Download White Noise and sleep great!
White Noise FULL v5.6.1
FIND OUT WHY THE WORLD IS SLEEPING BETTER! White Noise has 40+ ambient sounds to help you relax or sleep. Audio background service, sound shutoff timer, multiple alarms, sound controls, and high quality looping sounds like ocean waves, rain storms, running stream, and more. Featured in Health Magazine, The Washington Post, New York Times, PC Magazine, and raved about by thousands of satisfied customers. Find out why the world is sleeping better with White Noise.
Includes the following great features:
• 40 perfectly looped ambient sleep sounds
• Download new sounds for free at our White Noise Market (White Noise Market)
• Background audio allows you to listen while using other apps
• Quick access to your favorite sounds
• Sound shutoff timer to save battery (volume slowly fades out)
• Alarm clock with multiple alarm sounds
• Full screen LED digital clock perfect for any nightstand
• Alarm slowly fades volume in so you wake up refreshed
• No Ads
Includes the following unique sounds:
Air Conditioner, Airplane, Amazon, Beach Waves, Boat, Cars, Cat Purring, Chimes, City Streets, Clock, Clothes Dryer, Crickets, Crowd, Drip, Fan, Fire, Frogs, Hair Dryer, Heartbeat, Blue Noise, Brown Noise, Pink Noise, Violet Noise, White Noise, Ocean Waves, Car Rain, Light Rain, Heavy Rain, Extreme Rain, Rain Storm, Shower, Sprinkler, Stream, Tibetan Bowl, Thunder, Train, Vacuum, Washer, Water, Wind
What's New
White Noise 5.5 adds new major features:
- Playlists added!
- Export mixes and downloaded sounds (full version only)
- Play Mix and Play Playlist timers
- Media controls have been added to the notification bar (requires android v4.1+)
- Arrange sounds in the catalog
- Customize snooze times
- New Modern Icon
- Many improvements under the hood
This app has no advertisements
More Info:
Code:
https://play.google.com/store/apps/details?id=com.tmsoft.whitenoise.full

Download Instructions:
Download White Noise zip
Mirror:
Download White Noise zip
White%20Noise_5.6.1.apk.zip (21,51 MB) - uploaded.net
Download White Noise zip

Super Fast Browser v2.0.5.6

9:13 PM
Super Fast Browser v2.0.5.6
Requirements: Android 2.2+
Overview: Try the lightest and fastest web browser for your Android device. Super Fast browser weighs less than 400k, helping you browse at the speed of light :-).
Super Fast Browser v2.0.5.6
Try the lightest and fastest web browser for your Android device. Super Fast browser weighs less than 400k, helping you browse at the speed of light :-).
Now with a huge update - check out those new features:
1. New speedial home page.
2. New UI design.
3. Tab Overview.
4. Save last session dialog.
5. Full Screen feature.
6. Major framework redesign.
Some more of Super Fast browser's awesome features:
· Tab Support
· Voice Search
· Holo style – ICS and JellyBean – for all devices
· No ads while browsing
· Search autocomplete
· Sharing capability
· Download manager for 2.2 and all newer versions
· Support Flash and HTML5 video
To Switch between tabs just swipe left or right.
To crate and new tab click on "Setting" and "New Tab"
Browse the web without the wait - try the Super Fast & light browser from ironSource, the creators of Spearmint Web Browser.
Whats New:
Version 2.0.5.3 -
* Small bug fixed (happened only on a few devices)
Version 2.0.5.1 -
* Small fix for address bar
Version 2.0.5 -
* More Bug fixes
* Small home screen update
Version 2.0.4 -
* Bug fixes
* Stability Improvments
Version 2.0.3 - huge update:
1. New speedial home page.
2. New UI design.
3. Tab Overview.
4. Save last session dialog.
5. Full Screen feature.
6. Major framework redesign.
This app has NO advertisements
More Info:
Code:
https://play.google.com/store/apps/details?id=iron.web.jalepano.browser

Download Instructions:
Super_Fast_Browser_2056.zip (3,23 MB) - uploaded.net
Mirror
Download Super Fast Browser 2056 zip
http://turbobit.net/uqwi6jci0x56.html

 

emobilescommunity.blogspot.com

Toggle Footer