• Home
Name Date Size #Lines LOC

..--

gradle/wrapper/03-May-2024-65

include/03-May-2024-910437

samples/03-May-2024-8,6866,704

src/03-May-2024-11,3698,135

test/03-May-2024-568413

third_party/03-May-2024-650,489477,465

.gitignoreD03-May-2024132 1710

OWNERSD03-May-202463 43

READMED03-May-2024843 1813

ab_info.pyD03-May-2024224 97

build.gradleD03-May-202415.7 KiB502451

gradle.propertiesD03-May-202434 21

gradlewD03-May-20245.2 KiB173128

gradlew.batD03-May-20242.2 KiB8561

settings.gradleD03-May-2024108 43

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