0% found this document useful (0 votes)
8 views

Friut Doc 2

The document discusses features of the Android build system, debugging and performance tools in Android Studio like virtual device management and profiling tools, accessing generated data files, and code inspections that run automatically.

Uploaded by

soundarya k
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
8 views

Friut Doc 2

The document discusses features of the Android build system, debugging and performance tools in Android Studio like virtual device management and profiling tools, accessing generated data files, and code inspections that run automatically.

Uploaded by

soundarya k
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

For example, selecting the Problems view of your project displays links to the

source files
containing any recognized coding and syntax errors, such as missing an XML element
closing tag
in a layout file.
Android Build System
The Android build system is the toolkit user use to build, test, run and package
your apps.
This build system replaces the Ant system used with Eclipse ADT. It can run as an
integrated tool
from the Android Studio menu and independently from the command line. User can use
the
features of the build system to:
? Customize, configure, and extend the build process.
? Create multiple APKs for your app with different features using the same project
and
modules.
? Reuse code and resources across source sets.
? The flexibility of the Android build system enables user to achieve all of this
without
modifying your app's core source files.
Debug and Performance
Android Studio provides a number of improvements to assist user in debugging and
improving the performance of your code, including an improved virtual device
management, inline
debugging, and performance analysis tools.
Data file access
The Android SDK tools, such as Systrace, logcat, and Traceview, generate
performance
and debugging data for detailed app analysis.
To view the available generated data files, click Captures in the left corner of
the runtime
window. In the list of the generated files, double-click a file to view the data.
Right-click
any .hprof files to convert them to a standard .hprof file format.
ANDROID BLUETOOTH CHAT MESSENGER 8
SYSTEM SPECIFICATION About the Software
Code inspections
In Android Studio, the configured lint and other IDE inspections run automatically
whenever user compiles your program. In addition to the configured lint checks,
additional IntelliJ
code inspections and annotation validation run to streamline code review.
Android Studio enables several lint checks to ensure:
? Cipher.getInstance() is used with safe values
? In custom Views, the associated declare-styleable for the custom view uses the
same base
name as the class name
? Security check for fragment injection
? Where ever property assignment no longer works as expected

You might also like