commit | a92305f580ad4d6b3760541f382576280fd22b54 | [log] [tgz] |
---|---|---|
author | Dan Albert <[email protected]> | Wed Sep 29 04:14:10 2021 +0000 |
committer | Automerger Merge Worker <[email protected]> | Wed Sep 29 04:14:10 2021 +0000 |
tree | a2c9f358640ef3a5d3c36b17d3e4999d30a95467 | |
parent | 780ec915a20969728fccc7a347b1b99dc980e3b7 [diff] | |
parent | 8bfc3cb563da2622d3ffd577c0b05fbd1d140343 [diff] |
Adopt Dockerfile best practice for apt. am: e117ef04cf am: b8ff956e75 am: d07f1855e5 am: 8bfc3cb563 Original change: https://android-review.googlesource.com/c/platform/tools/ndkports/+/1838067 Change-Id: Id880d0967333cbc0a716576c74195b8f3610912f
A collection of Android build scripts for various third-party libraries and the tooling to build them.
If you're an Android app developer looking to consume these libraries, this is probably not what you want. This project builds AARs to be published to Maven. You most likely want to use the AAR, not build it yourself.
Note: Gradle support for consuming these artifacts from an AAR is a work in progress.
Each third-party project is called a “port”. Ports consist of a description of where to fetch the source, apply any patches needed, build, install, and package the library into an AAR.
A port is a subclass of the abstract Kotlin class com.android.ndkports.Port
. Projects define the name and version of the port, the URL to fetch source from, a list of modules (libraries) to build, and the build steps.
See the Port class for documentation on the port API.
Individual port files are kept in ports/$name/port.kts
. For example, the cURL port is ports/curl/port.kts.
ndkports requires an NDK to be used for building to be specified on the command line as well as a list of packages to build. For example, to build cURL:
$ ./gradlew run --args='--ndk /path/to/android-ndk-r20 openssl curl' Build output... $ find -name '*.aar' ./out/curl/curl.aar ./out/openssl/openssl.aar
Note that dependencies currently need to be already built or ordered explicitly.
To build all ports using Docker, use scripts/build.sh
.