Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Android High Performance Programming

You're reading from   Android High Performance Programming Build fast and efficient Android apps that run as reliably as clockwork in a multi-device world

Arrow left icon
Product type Paperback
Published in Aug 2016
Publisher Packt
ISBN-13 9781785288951
Length 412 pages
Edition 1st Edition
Languages
Tools
Arrow right icon
Authors (2):
Arrow left icon
Enrique López Mañas Enrique López Mañas
Author Profile Icon Enrique López Mañas
Enrique López Mañas
Diego Grancini Diego Grancini
Author Profile Icon Diego Grancini
Diego Grancini
Arrow right icon
View More author details
Toc

Table of Contents (12) Chapters Close

Preface 1. Introduction: Why High Performance? FREE CHAPTER 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 $19.99/month. Cancel anytime
Banner background image