Sunday 29 September 2013

Easy Launcher Featured As a Top Trending App in Google Play.....

Description:


Easy Launcher !
★ "Absolutely the best launcher I've ever seen"
★ "Good for lazy man"
★ "Easy Launcher made my phone usable again"
★ "Forget Facebook Home, this is the best!!"
When Easy Launcher first loads up, it ORGANIZES all of your icons into four neat tabs - Favorites, Games, Apps and System, so that it’s easy to find the icon you’re looking for. You control what goes into Favorites, so that you always have FAST access to your most-used apps and games, while Easy Launcher automatically sorts the rest.
Got too many apps and games that are causing clutter? No problem. Easy Launcher gives you one-click access to UNINSTALL -- no longer do you have to hunt for the phone's Settings app. And, as you install and uninstall more apps and games, Easy Launcher continually keeps your icons organized -- automatically.
But the real MAGIC is the fifth tab that Easy Launcher gives you, the Genie tab. In the Genie tab, Easy Launcher analyzes all the apps and games you've installed on your own, then gives you PERSONALIZED recommendations of other GREAT apps and games you might like. Don't like a recommendation? No problem -- just tell Genie never to recommend it again, and Genie remembers your preferences. The more you use Easy Launcher, the smarter Genie gets!

And, Easy Launcher is 100% free, with no ads and no spam whatsoever.

Average user rating of Easy Launcher is 4.3 out of 5.



Google Play Link:- Click Here

Wednesday 18 September 2013

Cyman Mark 2- Virtual Butler Based on Tony Stark's JARVIS : Android


Introducing Cyman



Cyman is a digital butler or virtual assistant based on the jarvis System from Iron Man. This voice assistant is a conversational software tool designed to help organize yourself, automate tasks, find information and eventually connect to your home.

CYMAN is that small  change that extra something to give you the right information but most importantly at right time.
Inspired by Tony Stark's System from the Iron Man motion pictures. CYMAN is more just a Siri alternative

The Cyman system actively helps you organize your tasks, and gives you the local weather, your tasks and news headlines with it's own alarm. Plus much more to come


CYMAN Marks 2 features:
-A British male "butler voice" powered by iSpeech technology
-Calling and texting
-Twitter & Facebbok status
-Opening Android applications
-Latest and international weather information
-Movies nearby
-Language traslation
-Factual information
-Location queries
-Task list management
-Limited mobile device controls
-Alarm setting
-Limited conversation
-Unit conversion
-Search queries
-UK National Rail enquiry(beta)

Created by: UGOBEL

App Link-

Tuesday 10 September 2013

Samsung Galaxy Note 10.1(2014) coming to India in October:


Samsung is planning to launch its Galaxy Note 10.1(2014 Edition) tablet in the India market around late-October or at Diwali season, reports Press Trust India(PTI).






The Samsung Galaxy Note 10.1 2014 Edition features a 10.1-inch WQXGA(2560x1600) Super Clear LCD Display. Just like the Samsung Galaxy Note 3 it comes with two variants. The 3G+Wi-Fi variant is powered by 1.9GHz octa-core processor, while the Wi-Fi + LTE is powered by 2.3GHz quad-core processor. There is 3 GB of RAM and it comes with 16GB/32GB/64GB internal storage options. It supports the 8 megapixel with BSI sensor. It run Android 4.3 Jelly Bean. The Tablet like it predecessors, comes with S-pen Stylus. A number of new features like Action, Memo, Scrapbook, Screen Writer and S finder has been introduced in new flagship Galaxy Note 3, will also been seen in Galaxy Tab 10.1 2014 Edition. The device house a large 8220 mAh battery.The newly Galaxy Note 10.1 also comes pre-loaded with Samsung KNOX for enhanced security.

The company has anounced that the Galaxy Note 10.1(2014 Edition) tablet will come in three connectivity options: Wi-Fi only, Wi-Fi and 3G, Wi-Fi and LTE. It will come with two colour option Jet Black and Classic White.

Tuesday 19 February 2013

How To Extract Java source code and XML Layout from the APK file

We can extract the code from apk file these are some of the tools that will help you to extract the source code and xml layout file from the apk files.

There are three tools you will need: apktool, dex2jar, and jd-gui (or any other java decompiler, 

JD Gui happens to be the best one I’ve found so far). You can download them from the 

following URLs:
 

http://code.google.com/p/dex2jar/

http://code.google.com/p/android-apktool/

http://java.decompiler.free.fr/?q=jdgui

Make sure you follow the installation instructions for APKTool. Windows users will have to 

download two files to get it working.

Once you have these downloaded and installed, the next thing you will need is an APK.

Now, that you have everything you will need to do the following:
 

1) Extract the APK using APKTool. Run: apktool d <apk>
 

2) Extract the classes.dex file found in the APK file. Run: jar xvf <apk> classes.dex
 

3) Extract the classes from classes.dex file. Run: dex2jar classes.dex
 

4) Extract the classes.dex.dex2jar.jar. Run: jar xvf classes.dex.dex2jar.jar

You now have the raw data available to you. You can use JD-Gui to peruse the extracted 

classes 

and even save the source down as Java. All of the layouts, manifest, strings, images, and assets 

are also available to you in the appropriate folders.