Pages

Saturday, 24 May 2014

Some Useful Commands for ADB in Windows

ADB, Android Debug Bridge, is a command-line utility included with Google�s Android SDK. ADB can control your device over USB from a computer, copy files back and forth, install and uninstall apps, run shell commands, and more.
Adb is a connection between your android and computer.

Besides the times when we've broken something and need to fix it, there are plenty of reasons why an advanced Android user would want to talk to his or her device. To do that, you need to have a few tools and know a few commands.
Now Here We talking about some basic commands for adb.First you setup adb in windows by this tutorial.

Install ADB (Android Debug Bridge) in Windows


For adb setup you must turn on USB Debugging in your Android Phone.
Read this for More;

Some Basic ADB Commands


View connected device(s)


Use this to view all connected devices and list their IDs.
adb devices
If multiple devices are attached, use adb -s DEVICE_ID to target a specific device.

Push a File in Android Device

If you want to move a file onto your Android device programmatically, you want to use the adb push command. You'll need to know a few parameters, namely the full path of the file you're pushing, and the full path to where you want to put it. Let's practice by placing a short video (in my case that is Flash Trailor Video) into the Movies folder on your device storage.


I copied the flash.mp4 file into the adb folder so I didn't need to type out a long path to my desktop. I suggest you do the same. I jumped back to the command line and typed "adb push flash.mp4 /sdcard/Movies/" and the file copied itself to my Xolo A500S, right in the Movies folder. If I hadn't dropped the file into my adb folder, I would have had to specify the full path to it -- something like C:\Users\Prophet\Desktop\flash.mp4. Either way works, but it's always easier to just drop the file into your tools folder and save the typing.
You also have to specify the full path on your device where you want the file to go.Windows users need to remember that on Android, you use forward slashes (one of these -- / ) to switch folders because it's Linux.

Pull a File From Android Device

If adb push sends files to your Android device, it stands to reason the adb pull command gets them out. That's exactly what it does, and it works the same way as the adb push command did. You need to know both the path of the file you want to pull off, as well as the path you want it placed into. You can leave the destination path blank and it will drop the file into your tools folder to make things easy. 

In this example, I did it the hard way so you can see what it looks like. The path of the file on the device is "/sdcard/Movies/flash.mp4" and I put it on my Windows 8 desktop at "C:\Users\Prophet\Desktop". Again, the easy way it to just let it drop into your adb folder by not giving a destination, which would have been "adb pull /sdcard/Movies/superfreak.mp4". Remember your forwards slash for the Android side, and you'll have no problems here.

ADB Reboot Command

Yeah Buddy you are right this command can make your phone reboot(restart). You just type adb reboot your phone gonna  going to reboot.
adb reboot

ADB Reboot Bootloader 

This command can make your phone reboot and start it from bootloader.Not only can you reboot your device, you can specify that it reboots to the bootloader. This is awfully handy, as sometimes those button combos are touchy, and if you have a lot of devices you can never remember them all.
Most devices can also boot to the recovery directly with the "adb reboot recovery" (note there is no hyphen in this one) and some can't. It won't hurt anything to try, and if yours can't nothing will happen.
adb reboot-bootloader

ADB Shell Commands


The adb shell is like you run your Android Terminal via remote.With this command you can view and manage your android device file or folder structure. The adb shell command confuses a lot of folks. There are two ways to use it, one where you send a command to the device to run in its own command line shell, and one where you actually enter the device's command shell from your terminal. In the image above, I'm inside the device shell, listing the flies and folders on the device. Getting there is easy enough, just type "adb shell" and enter. Once inside, you can escalate yourself to root if you need to. I'll warn you, unless you're familiar with an ash or bash shell, you need to be careful here -- especially if you're root. Things can turn south quickly if you're not careful. If you're not familiar, ash and bash are command shells that a lot of folks use on their Linux or Mac computers. It's nothing like DOS. 
adb shell
The other method of using the adb shell command is in conjunction with one of those Ash commands your Android device can run. You'll often use it for more advanced tasks like changing permissions of files or folders, or running a script. Using it is easy -- "adb shell ". An example would be changing permissions on a file like so: "adb shell chmod 666 /data/somefile". As mentioned, be very careful running direct commands using these methods.

Install and Uninstall an application

Install a Application

While adb push can copy files to our Android devices, adb install can actually install .apk files. Using it is similar to use the push command, because we need to provide the path to the file we're installing. That means it's always easier to just drop the app you're installing into your tools folder. Once you've got that path, you tell your device to sideload it like this: "adb install TheAppName.apk".

If you're updating an app, you use the -r switch: "adb install -r TheAppName.apk". There is also a -s switch which tries to install on the SD card if your ROM supports it, and the -l switch will forward lock the app (install it to /data/app-private). there are also some very advanced encryption switches, but those are best left for another article.

And finally, you can uninstall apps by their package name with "adb uninstall TheAppName.apk". Uninstall has a switch, too. The -k switch will uninstall the app but leave all the app data and cache in place.

# example
adb install -r ~/application.apk

Uninstall an application


adb uninstall PACKAGE_NAME

# example
adb uninstall com.growingwiththeweb.example

ADB Logcat

The adb logcat command is one of the most useful commands for some folks, but just prints a bunch of gibberish unless you understand what you're seeing. It returns the events written to the various logs in the running Android system, providing invaluable information for app developers and system debuggers. Most of us will only run this one when asked by one of those developers, but it's very important that we know how to use it correctly.
adb logcat

To see the log output on your computer screen, just type "adb logcat" and hit enter. Things can scroll by pretty fast, and chances are you won't find what you're looking for. There are two ways to handle this one -- filters, or text output.

The filter switch is used when a developer has placed a tag in his or her application, and wants to see what the event logs are saying about it. If it's needed, the developer will tell you what tag to append to the command. The text output is more useful, as it logs to a .txt file on your computer for reading later. Evoke is like so: "adb logcat > filename.txt". Let it run while you're doing whatever it takes to crash the app or system program you're debugging, then close it with the CTRL+C keystroke. You'll find the full log file saved in the directory you're working from, likely your tools folder. This is what you'll send to the developer.

Be warned that sensitive information can be contained in the log files. Be sure you trust the person you're sending them to, or open the log file in a text editor and see just what you're sending and edit as necessary.

There are plenty of other switches for the logcat command.  Developers can choose between the main, event, or radio logs, save and rotate log files on the device or their computer, and even change the verbosity of the log entries. These methods are a bit more advanced, and anyone interested should read the Android developer documentation.

Related Articles

Install ADB (Android Debug Bridge) in Windows

ADB, Android Debug Bridge, is a command-line utility included with Google�s Android SDK. ADB can control your device over USB from a computer, copy files back and forth, install and uninstall apps, run shell commands, and more.
Adb is a connection between your android and computer.Every Android manager software use adb connection in gui form.


What are the adb and fastboot and would i need them.


You need ADB and Fastboot if you are one of those people that like to mod/hack your Android phone. While many mods/hacks are now becoming more main-stream-user friendly with GUIs , there are still times when users need to use ADB and/or Fastboot. 

With the help of adb You can

Bypass Android Pattern Lockscreen using CMD



What is Adb Setup ?

This is All-in-One installer for 3 most needed PC tools for Android. No need to download big SDK for 3 small things.  It's very small and fast installer for tools and drivers.

Download Adb Setup With Drivers

Features:

Small - 9.11 MB
Fast - 15 seconds install (many times its even less)
AIO - ADB, Fastboot and also Drivers
Easy to install - just run it and program will guide you
Clean - ADB and Google Drivers from latest SDK


Install process:

1. Run it (Require administrator privileges)
2. Press Y/Yes to install ADB and Fastboot or N/No to skip
3. Press Y/Yes to install ADB system-wide or N/No for current user only
4. Press Y/Yes to install Drivers or N/No to skip
5. Continue Driver installation
6. 15 seconds passed - finished!
7. Open C:\ Drive you see a folder name adb ,Now Right Click with pressing SHIFT button on adb folder and open with command window here.Now type adb and press enter.

Notes:

  1. System-wide: ADB and Fastboot are installed to %SystemDrive%\adb directory, and added system-wide path.
  2. Current user only: ADB and Fastboot are installed to %UserProfile%\adb directory, and added path for current user.
  3. CMD can use ADB and Fastboot from any directory.
  4. Drivers are installed to system - no need to install them from directories.
  5. Installer automaticly decides if install 32-bit or 64-bit drivers.
  6. If you have older Google USB Driver installed, please uninstall it from Control Panel before installing new
  7. If you have previously installed it as system-wide and now you want it current user only (or vice-versa), it won't remove it, you must do it yourself. (at least for now)

Some Useful Commands for ADB in Windows

Related Articles


10 Things You Can Do In Android�s Developer Options

Friday, 23 May 2014

Opera Mini Handler apk for Android for Free Internet


This is Opera Mini Hanler v7.5 which is released for Android OS . With this hacked version, you can browse Internet for free with Airtel,Aircel BSNL and lots more. This trick is tested on Android versions Gingerbread, ice cream sandwich and Jelly Bean ( 4.1 ) and seen to be working perfectly. 
 You can use this Opera Mini to use free internet by modyfing the server address/ proxy address according to your carrier.Opera Mini apk for Android.
This is a perfect way to browse free internet on any carriers. This opera moded version basically for airtel free internet GPRS but you can also use aircel free internet GPRS with this opera mini Handler.

Earn Free Mobile Recharge instantly with Ladoo Android App


Opera Mini Hanler for Android Features:


Introduction
  1. This Opera Mini includes a lot of features. they are,
  2. In Built handler UI
  3. Option to add Host, HTTP, Real Host, Reverse proxy etc
  4. Can add filters to server address
  5. Add Front Query, Back query and Middle Query
  6. Add Port to non-port URL
  7. Able to sign in with user name and password to protected Proxy servers
  8. Improved Performance
  9. Stable version. A lot of bug fixes
  10. For editing the server address, add a filter of 10.0.0.172:80 to point to your new address.




Related Articles


IDEA FREE Unlimited INTERNET GPRS and 3G TRICK 2014 for Android

Start: Android Lockscreen Changer App

In Android You can Customize everything that you want. so you can modify  and customize your lockscreen too.Now here we show a Best android lockscreen changer app.This eye catching android app name is Start .
Lock screen is a first screen of any android phone.So you first need to customize your android lockscreen by start android app.
 The lock screen app provides quick access to any app, either via a ring menu to unlock or small tabs spread out on the right or left sides of the screen. By pulling each one out, this brings content into focus, such as galleries, feed reader, weather or Google Search. Also, the volume profile can be changed directly using the slider.
This is best option for android lockscreen replacement.
The lock screen app also displays date, time and battery levels. A shortcut on the top right provides quick access to settings allowing the user to customize its look and functions at will.That's why i called this best android lockscreen widgets.

Easy Android ROMs Customization Through Xposed Framework

Description

Looking for a lockscreen app? Forget anything you know about lock screens. Download Start and get ready to be amazed!
Start is a next-generation start screen. Start gives you quick access to everything that matters to you from your start screen. Start connects with facebook, twitter, flickr, Youtube, local weather forecasts, photo gallery, and a host of news providers using RSS feeds to make your start screen really yours.
It�s easy, it�s cool and it saves you a lot of time. To make Start even more fun lockscreen, we have designed hundreds of FREE themes for you to choose from.

With Start lockscreen you can:
 Enjoy excellent performance with no delays
 Easily launch up to 24 apps of your choice or just let our smart algorithm set    it automatically for you
 On Screen quick access configuration with a long press
 Stream your social media feeds with a single swipe
 Launch the camera and any related app
 Call/text/email your friends and family without unlocking your phone
 Get your favorite content from hundreds of sources
 Select your favorite theme or use your own personal picture as a background
 Chose and configure our widgets e.g. date, time and battery meter
 Switch between ring/vibrate/mute and unlock your phone with cool sliders


How to Download Official Android Apps Directly from Google Play on PC




Related Articles

Earn Free Mobile Recharge instantly with Ladoo Android App

ladooEveryone Wants Free Mobile Recharge in his Android phone. So guyz our prophethacker team found a app in android play store that can free recharge in your phone. This app name Ladoo. With the help of ladoo you can earn free recharge very fast and easily.

How to free recharge with Ladooo beta when your 10 Rs in your account.You  can do free recharge on idea , Airtel , Aircel , Bsnl , Tata docomo  CDMA / GSM , Loop Mobile , MTNL , Reliance CDMA / GSM , Uninor , Vodafone , MTS , Videocon supported all india .

Use Both Packet Data And WiFi For Boost Internet Download Speed


How The Ladoo Android App  work 

How does android earn money with ladooo beta You do noting or wait to earn money or recharge . Ladooo is give offer to download application you just download it and get that download money reward ( All reward Money are mentioned with that apps offer ).You view the ads by apps and earn free recharge tricks into mobile.
Once you downloaded that apps you need to open that downloaded apps for 1 min and again open Ladooo and wait some time , your reward credit sent to  your account instantly and some time its take 24 hrs after verify the apps owner then you get your reward money.

Android Users access the Internet without 2G/3G or Wifi with Be-Bound App



How to Install apk app Ladooo Beta

Ladooo beta is working only when you�re download it from your Google play market and your are able to earn money with your Ladooo beta android apk app.Ladooo beta also work with referral.






First download It from Google Play no Direct link Download

After that download open it and choose offer and install also use it for 30 sec.



Related Articles

Free BSNL 3G/2G GPRS Hack Unlimited Free Internet 2014 for Android Trick

Earn Free Mobile Recharge instantly with Ladoo Android App
Reviewed by Vinay Kumar
Rating:5

Thursday, 22 May 2014

Prophet Hacker Blog Book With Updated Android Hacking Edition

Prophet Hacker Blog Book

Book with updated posts ..You can read our blog offline.Download This book

This Book has all post of my blog with labels and links.













Wednesday, 21 May 2014

Camera 360 Ultimate Best Camera apps for android

You like photography in android.With default android camera has not so much feature.So we recommend you to use third party camera apps for android.

 Camera 360 Ultimate is one of the best mobile apps for photo. This application is very popular at the android. The many android users who like this app because it is different from other photo editing application. Way that is easy to use and the number of features make this android application favored most people, especially young people who like to take pictures.

Camera 360 lets you take pictures and edit them with a variety of filters are available. Filters can be done before or after the shooting. Moreover, Camera 360 Ultimate is also equipped with a variety of features that support to make your photo more beautiful or 360 degrees different from the original photo.
 it is a free application and allows you to handing snapshots, apply and in the same time to preview different fashionable effects before to save an image. Moreover, with it you can download and apply Scenes to create your liked own artistic photos and display.





Description

**Camera360 becomes a multifunctional camera app with Video (Beta) and Scan QR Code added.**

To make your life even easier, Camera360 has introduced Camera360 Cloud, a cloud platform that can help you manage, edit, store, and share your photos all in one place. 
[Feature Details]
1. New Video function 
Video shooting (Beta) is added to make videos on-the-go, recording every memorable moment.
2. New Camera Store.
Eight creative cameras of Camera360 are moved to �Camera Store� where you can add and manage your preferred camera only. Effect Cam, Selfie Cam, Easy Cam, Scene Cam, Funny Cam, Tilt-shift Cam, Color-shift Cam and Audio Cam are available for free now. Customize your own Camera360 now.
3. New Effect Store.
More than 100 great Effects of Camera360 can be found in new Effect Store where you can add and manage your own preferred effect. The most important part is ALL FREE!
4. User Friendly Photo Album
Photos are classified by time in Camera360 album for easy photo search and management. Photos in phone gallery can be browsed and edited in �Other Album�.
5. Professional Photo Edit features
Crop, Rotate, Blur, Texture, Adjust and more photo edit features are available after shooting.
6. Different Frames 
Resize photo with new frames (16:9/4:3/1:1) while shooting. More parameters are available when device supports. Find them by sliding from the right to the left on main shooting interface.
7. Smart Cloud Services
Safe and smart cloud album for photo store, manage, edit, share and more. Support auto synchronization under uploading settings of Camera360 Cloud. Photos can be browsed on different end devices.












Related Articles


Google Camera App arrives with Lens Blur Effect