README
1
2In order to build using prebuild NDK versions, this project must be initialized from a custom repo using:
3mkdir android-games-sdk
4cd android-games-sdk
5Corp -> repo init -u persistent-https://googleplex-android.git.corp.google.com/platform/manifest -b android-games-sdk
6AOSP -> repo init -u https://android.googlesource.com/platform/manifest -b android-games-sdk
7repo sync -c -j8
8
9Then:
10./gradlew gamesdkZip
11will build static and dynamic libraries for several NDK versions.
12
13By default, the gradle script builds target archiveZip, which will use a locally installed SDK/NDK pointed
14to by ANDROID_HOME (and ANDROID_NDK, if the ndk isn't in ANDROID_HOME/ndk-bundle).
15
16It is also possible to build from a direct AOSP checkout, but then you won't be able to build for multiple
17NDKs: archiveZip will still work but the gamesdkZip target will fail.
18