Book Image

Android High Performance Programming

By : Emil Atanasov, Enrique López Mañas, Diego Grancini
Book Image

Android High Performance Programming

By: Emil Atanasov, Enrique López Mañas, Diego Grancini

Overview of this book

Performant applications are one of the key drivers of success in the mobile world. Users may abandon an app if it runs slowly. Learning how to build applications that balance speed and performance with functionality and UX can be a challenge; however, it's now more important than ever to get that balance right. Android High Performance will start you thinking about how to wring the most from any hardware your app is installed on, so you can increase your reach and engagement. The book begins by providing an introduction to state–of-the-art Android techniques and the importance of performance in an Android application. Then, we will explain the Android SDK tools regularly used to debug and profile Android applications. We will also learn about some advanced topics such as building layouts, multithreading, networking, and security. Battery life is one of the biggest bottlenecks in applications; and this book will show typical examples of code that exhausts battery life, how to prevent this, and how to measure battery consumption from an application in every kind of situation to ensure your apps don’t drain more than they should. This book explains techniques for building optimized and efficient systems that do not drain the battery, cause memory leaks, or slow down with time.
Table of Contents (17 chapters)
Android High Performance Programming
Credits
About the Authors
About the Reviewer
www.PacktPub.com
Preface
Index

More variables in NDK


NDK defines a few variables that can be automatically used in the Android.mk file.

TARGET_PLATFORM

This variable defines the target platform to be used by the build system:

TARGET_PLATFORM := android-21

The target is always used in the format android-xx. Not all the platform types are supported by NDK. It's a good idea to check on the NDK website which ones are supported. At the time of writing this book (1Q2016), this is the list of the supported platforms:

Supported NDK API level

Equivalent Android release

3

1.5

4

1.6

5

2.0

8

2.2

9

2.3 to 3.0.x

12

3.1.x

13

3.2

14

4.0 to 4.0.2

15

4.0.3 to 4.0.4

16

4.1 and 4.1.1

17

4.2 and 4.2.2

18

4.3

19

4.4

21

4.4W and 5.0

TARGET_ARCH

This variable specifies the architecture that will be used to build NDK. It could contain values such as x86 or arm. The value of this variable is taken from the APP_ABI file, which is specified in the Android.mk file. At the time of writing this book, this is the list of supported...