Search icon
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
Android High Performance Programming

You're reading from  Android High Performance Programming

Product type Book
Published in Aug 2016
Publisher Packt
ISBN-13 9781785288951
Pages 412 pages
Edition 1st Edition
Languages
Authors (3):
Emil Atanasov Emil Atanasov
Profile icon Emil Atanasov
Enrique López Mañas Enrique López Mañas
Profile icon Enrique López Mañas
Diego Grancini Diego Grancini
Profile icon Diego Grancini
View More author details

Table of Contents (17) Chapters

Android High Performance Programming
Credits
About the Authors
About the Reviewer
www.PacktPub.com
Preface
1. Introduction: Why High Performance? 2. Efficient Debugging 3. Building Layouts 4. Memory 5. Multithreading 6. Networking 7. Security 8. Optimizing Battery Consumption 9. Native Coding in Android 10. Performance Tips 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...

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at €14.99/month. Cancel anytime}