<B:LOOP VALUES='DATA:POSTS' VAR='POST'><B:INCLUDE DATA='POST' NAME='POST'></B:INCLUDE></B:LOOP> ~ <DATA:BLOG.TITLE></DATA:BLOG.TITLE> <DATA:BLOG.PAGETITLE></DATA:BLOG.PAGETITLE>

Chủ Nhật, 2 tháng 6, 2013

Hướng dẫn sử dụng adb, logcat ddms

[WIN][GUIDE]HOW TO USE ADB,DDMS AND TAKE A LOGCAT {pictorial explanation}

HOW TO USE ADB , DDMS & TAKING AN LOGCAT ..etc


WHAT IS ADB???
Quote:
EXPLANATION
Quote:
Whenever you create an android app or when you develop an Rom , it is important that you must deliver GOOD QUALITY APP or ROM , that are rid of Bugs ..Eventually you might come across a situation when your APP or ROM isn't working or it is bricking the device or some things are not working .These situation can be tackled only with a proper debugging tools ..So ADB ( android debug bridge) is a powerful Debugging tool and a tool which allows us to step through each line of code and examine the value of each variable.It offers us some of the powerful tools ..Debugging is not a big deal for the people who come from a JAVA programming background .Dalvik VM in android supports java debug wire protocol to attach to the device over ADB
Quote:
ADB

ADB or ANDROID DEBUG BRIDGE is a command-line utility that is often used to communicate over the debug channel with a connected phone or virtual device (emulator). ADB can control your device over USB from a computer, copy files back and forth, install and uninstall apps, run shell commands, and more...
SETTING UP ADB :-


Quote:
Quote:
1) Install Java JDK :-
Before installing the Android SDK, you’ll have to install Oracle’s Java development kit. You can download it from here...(click me !!)

Even if you already have the Java runtime (JRE) installed, you’ll need to install the JDK as well.


After installing Java JDK , you can now download the Android SDK from Google .
NOTE:- If you see a any type of Java-related error during installation, then download and install the x86 version of the JDK, not the x64 one ..
Quote:
2) Installing android SDK:-

Download Android SDK from here...(click me !!!)

After clicking on "DOWNLOAD FOR OTHER PLATFORMS" , you will get an extended menu ..




After downloading the .exe file , then Double click on the .exe file and install it in C:\ Drive or on whichever drive you wanna install .


Quote:
Quote:
3) Android SDK Setup
Quote:
Once the Android SDK is downloaded and installed, launch the SDK Manager application from your Start menu.



Enable the Android SDK tools and SDK Platform-tools checkbox and click the Install button. This downloads and installs the platform-tools package, which contains ADB and other utilities.



After installing these packages , Go to the place where you installed ANDROID SDK . IN MY CASE , IT IS :-
Code:
C:\Program files(x86)l\Android\android-sdk\platform-tools
If you used a different install location, you’ll find ADB in the platform-tools directory,inside your ANDROID-SDK directory .



Browse to platform tools and hold Shift and right-click inside it, and select Open command window here...


Quote:
Quote:
NOW YOU WILL SEE THIS :-



Note :- To use ADB with your Android device
Quote:
Quote:
1) you must enable USB debugging on it. You’ll find this option under Developer Options on your device’s Settings screen



Quote:
2)You must install your device drivers :- Individual OEM USB drivers for windows are available for each manufacturer and are listed in the official document ..
After you have downloaded you device drivers, then we have to install on our pc. for that :-

a) connect the device to the computer
b) right click on MY COMPUTER and click manage
c) go to devices > other devices and right click on device and select update driver software.
d) you should see an option to " BROWSE MY COMPUTER FOR DRIVER SOFTWARE" , which you nedd to click on and point to the location of your device driver installation file..


To test whether ADB is working properly, connect your Android device to your computer using a USB cable and run the following command:
Code:
adb devices
Now it will show the devices connected



Now you have sucessfully installed ADB and now we are good to go further..

WHAT IS A LOGCAT :-


Logcat is the command to view the internal logs of the Android system. Viewing logs is often the best way to diagnose a problem, and is required for many issues. This way you'll find out what apps are doing in the background without you noticing.


TAKING AN LOGCAT :-

Now type this in the terminal
Code:
adb logcat -v long > logcat.txt
or

Code:
Code:
adb logcat > logcat.txt
you shall have a log file called name of logcat.txt inside your ADB folder.

Quote:
SOME OF THE USEFULL ADB COMMANDS :-

Quote:
Code:
adb install C:\package.apk
– Installs the package located at C:\package.apk on your computer on your device.
EG -adb install G:\xda.apk
Quote:
Code:
adb uninstall package.name
– Uninstalls the package with package.name from your device.
EG :- you’d use the name com.quoordy.xdadevelopers to uninstall the Xda developers app.
Quote:
Code:
adb push C:\file /sdcard/file
– Pushes a file from your computer to your device. the command here pushes the file located at C:\file on your computer to /sdcard/file on your device .
EG :-adb push G:\system\framework\framework-res.apk /system/framework
Quote:
Code:
adb pull /sdcard/file C:\file
– Pulls a file from your device to your computer – works like adb push, but in reverse. EG :-adb pull /system/app G:\rom\system\app\
Quote:
Code:
adb logcat
– View your Android device’s log. Can be useful for debugging apps.
Quote:
Code:
adb shell
– Gives you an interactive Linux command-line shell on your device.
Quote:
Code:
adb shell command
– Runs the specified shell command on your device.

The Following 23 Users Say Thank You to -MR.WORLDWIDE- For This Useful Post: [ Click to Expand ]
 
advertisement
xda-developers
Saudi Insurance Report
Download a Free Extract Here! The Latest Auto's Industry Data. BusinessMonitor.com/SaudiInsurance


 
-MR.WORLDWIDE-
Unread
(Last edited by -MR.WORLDWIDE-; 31st May 2013 at 03:27 PM.)
#2  
-MR.WORLDWIDE-'s Avatar
Member - OP
Thanks Meter 395
Posts: 84
Join Date: Mar 2013
Default DDMS

The Dalvik Debug Monitor Service (DDMS) as it is known is one of the application debugging tools that must be a part of every ANDROID app developers's toolkit..This is very very useful to the app developers.Its is a very powerful debugging tool environment and offers various unparalleled debugging features like heap information , logcat monitoring , file manager.It is available by default in ECLIPSE IDE environment or even in the ANDROID SDK.It works on top of ADB for device communication..
DDMS can be stated as a standalone application as part of ANDROID DEVICE MONITOR.The Android Device Monitor is a standalone which can be used in case you do not use the eclipse development environment , though the integration with Eclipse is something that other IDE'S could be envious of.
HOW TO USE DDMS ??
1)AS EXPLAINED IN THE ABOVE POST , INSTALL ANDROID SDK....AFTER YOU HAVE INSTALLED PLATFORM-TOOLS & SDK TOOLS..NOW GO TO ANDROID FOLDER AND OPEN TOOLS



2)NOW RUN MONITOR.bat AS ADMINISTRATOR





3)NOW ANDROID DEBUG MONITOR WILL APPEAR ..

Now let's learn about its components and it's use's

DDMS VIEW COMPONENT'S :-

DDMS offers a set of view components , each of which show relevant information related to the connected Emulator.

DEVICES :-
The device panel shows the details of each process that are running in the connected device.There are various operations that can be performed from this panel.



Each of the icons present in this panel performs the functions as follow's :
  • Debug Process Icon :- It show's the state of connection of the debugger.
  • Update Heap :-Clicking on this enables Heap information for the process so that we do not have to do memory deallocation manually.
  • Dump HPROF :- Generates a Heap Dump , useful for tracing memory leaks in your app.
  • Cause GC :-Invokes the Garbage collector to collect heap data.
  • Update thread :-Show's the information about the running thread in the thread tad for selected process
  • Start Method Profiling :- Tracks the metric's related a method. It collects information like the amount of time taken to execute a method,number of calls.
  • Stop Process :-Stops the currently selected process.
  • Screen Capture :- Takes a screenshot of whatever is displayed on the screen.
  • Reset ADB :- Ast he name suggets,it resets ADB.


THREAD'S :-
The thread tab on the right of devices view shows informatiom related to the thread for each process selected in the devices view.The information shown can described as follows.
  • ID :- A unique ID assigned to each thread dby Dalvik V,, which are only odd numbers that start from 3 .
  • Tid :-The linux thread associated with each thread , ehich matches the process ID for each main thread in a process.
  • Status :- Status of the thread in VM , out of daemons are marked with an asterix.other values can be among running?sleeping/init/starting.
HEAP
:-
the heap view show a information and statistics about memory heap .To view heap usage,follow these below steps
  1. From the devices view,select the process for heap usage which has to be examined.
  2. click on update heap
  3. From heap Tab , select Cause GC to enable collecting heap data
Everytime you need to update your heap statistics.This will show you the amount of memory allocated to each

ALLOCATION TRACKER

The allocation Tracker show a real time information about allocation happening in the application over a certain period of time.To enable allocation Tracking.

  1. select the process to be tracked from device panel
  2. click on start tracking from allocation tracker tab.
  3. perform any actions on the devices or emulator that you want to be tracked.
  4. click on Get Allocations objects, since tracking was enabled .


NETWORK STATISTICS
;-
The network tab allows you to track and optimize the amount of network data your app is using.It even allows you to tag network sockets so that you can differentiate between types of data .It will indicate the speed and amount of data received /transmitted ..

EMULATOR CONTROL :-
One problem with testing Android devices using an emulator or developer device is the fact that it is unable to examine the performance of the app in the reak world conditions . like call or SMS is received/sent or when a particular location is reached.To be specific the emulator Tab allows you to to emulate the following real world conditions :
Telephony Status :- the following options are available to set the status of phones network.
  • Voice :- unregistered,home,roaming,searching,denied.
  • Data :- unregistered,home,roaming,searching,denied.
  • Speed :- Full,GSM,HSCSD,GPRS,EDGE,UMTS,HSDPA.
  • Latency :- GPRS,UMTS
  • Telephony Actions :- Telephony actions allow you to spoof the network.
  • Location Settings ;- Emulator control allows you to sppof the location

FILE EXPLORER :-

As the name says it lets you view the directory and file structure if the device and lso easily copy files to and from the emulator so as to enable easy data transfer in a manner similiar to ADB or ADB pull command.
SYSTEM INFORMATION :-

As the name says , it give's us the particular information about the GPU load , CPU load....
DDMS HAS ALSO AN INBUILT LOGCAT VIEWER :-

Không có nhận xét nào:

Biểu mẫu liên hệ

Tên

Email *

Thông báo *