Android
Prerequisites
You need the following to build for Android:
Android SDK Platform 10.0 ("Q") API-Level 29
Android NDK 26.1 or higher (older should work as well, but untested)
Android SDK Build Tools
Android SDK Platform-Tools
Android Emulator (optional)
Java (JRE)
Cmake
Vulkan SDK 1.3.275 or newer
Powershell 7 (for debugging in VSCode or running convenience scripts)
Visual Studio 2022 or Linux
Ninja is a build generator used by CMake and needs to be added to the PATH
environment variable.
The easiest way to install the Android components is to download Android Studio and then to select these from the SDK Manager.
Alternatively, you can also install these via the command line tool located in C:\Users\[USER]\AppData\Local\Android\Sdk\cmdline-tools\latest\bin
:
Once installed, the following environment variables need to be set: Change the version to reflect the one you are using.
ANDROID_NDK_HOME needs to point to your installed version, by default this is:
C:\Users\[USERNAME]\AppData\Local\Android\Sdk\ndk\[VERSION]
ANDROID_HOME needs to point to your installed version, by default this is:
C:\Users\[USERNAME]\AppData\Local\Android\Sdk
JAVA_HOME needs to point to a java runtime. Android Studio has its own version so there is no need to download it separately:
C:\Program Files\Android\Android Studio\jbr
ANDROID_STUDIO (Optional for debugging). Needs to point to the root of Android Studio, e.g.
C:\Program Files\Android\Android Studio
. We currently rely on thelldb-server
that ships with Android Studio. Alternatively, you can also debug any app with Android Studio once at which point the required files are on the device and this env var is no longer needed.
Visual Studio / VSCode / CLion
While you can manually run CMake to use the ninja generator, a more convenient solution is to use CMake's CMakePresets.json
which is already configured for Android arm64 and x64 builds.
Visual Studio: Use Visual Studio's open folder functionality. Go to
File > Open > Folder...
and select the root of the repository. If all environment variables were set correctly VS should automatically configure CMake. Once done, a drop down appears in the VS toolbar, allowing you to select the configuration, e.g.android-arm64-debug
. Once changed, VS will start to configure CMake again for the new configuration. Next, select a build target, e.g.libFoundationTest.so
which are the foundation unit tests. Note that you can only select applications, not all libraries here.VSCode: Make sure you have the
C/C++
,C/C++ Extension Pack
,CMake
andCMake Tools
plugins installed. SelectFile > Open Folder...
and select the root of the repository. ExecuteCMake: Select Configure Preset
to select the config you wish to use. Make sure CMake runs through without errors. On failure fix any errors and executeCMake: Configure
until successful. Finally, executeCMake: Build Target
to build the project you want.CLion: Open settings, go to
Build, Execution, Deployment > CMake
, select the profile you wish to use and enable it. Make sure CMake configure runs through without errors. Finally, select the build target of choice in the toolbar and press the build button next to it.
Setting up an Emulator AVD
You can either use the Android Studio GUI or the command line to setup the emulator. For the command line option, the avdmanager
is usually located in the C:\[USERNAME]\admin\AppData\Local\Android\Sdk\cmdline-tools\latest\bin
folder. The following powershell command will create a device that can run PL generated apks:
Starting the Emulator
The emulator can be comfortably started from within Android Studio or via the emulator
application located in C:\[USERNAME]\admin\AppData\Local\Android\Sdk\emulator
via these powershell commands:
For better performance, the -gpu host
option can be used but it may cause crashes or graphical artifacts. For more information on the available options, see the official emulator hardware acceleration page. The options -wipe-data -no-snapshot -no-audio
are not strictly necessary but will provide the same environment our unit tests are run under.
To use the GUI instead, open Android Studio, go to Configure>AVD Manager
and select Create Virtual Device
. Select the Pixel 7
hardware profile. Next, select x86 Images
, then select Q (API 29), x86_64
.
Debugging Code
You can use Android Studio by using the Profile or Debug APK
option and selecting your APK. Before you can start debugging, open the Project Structure...
dialog and make the following changes:
Project -> SDK: Select one of the installed Android SDKs.
Modules -> Dependencies Tab -> Module SDK: Select one of the installed Android SDKs. Afterwards, just select your target device and press
Debug
.
If you want to use VSCode instead, you can follow the rest of the guide. Otherwise this section can be skipped.
Before debugging it should be ensured that you have an emulator set up or a device connected. There should only be one device or emulator. Otherwise debugging is going to fail because it's unknown which target to use.
If adb is not available in the command line, %ANDROID_HOME%\platform-tools
needs to be added to the PATH
environment variable.
You will need to install the CodeLLDB
VSCode extension and then create or modify the .vscode/launch.json
file in your checkout and add a launch config. There are a few examples in the launch.json
file in the root of the repo. What you need to change is the following:
PackageName: This is the package name of the app you want to run, e.g.
com.plengine.RendererTest
.apk (optional): If set, the app will be installed first before starting. This should point to the output directory of your configuration. E.g.
${workspaceFolder}/Output/Bin/[BUILD_CONFIG]/RendererTest.apk
.
In VSCode you can now select the debug config from the Run and Debug
menu and start debugging. Note, if something goes wrong on Windows, a message box will pop up which might not be in the foreground. On Linux, inspect the LLDB log. You can also follow the detailed debugging guide in the FAQ section below.
See plEngine log output
To see the plEngine log output the following logcat filter can be used.
FAQ
No debugging visualizers loaded
You need to ensure that the .lldbinit
in the root of the repo can be loaded. Under Linux, add or change the following line in the home ~/.lldbinit
file:
VSCode Debugger does not start / command line debugging
If debugging doesn't work or debugging from the command line is preferred, the command line debugger can be started. It gives detailed output.
Step 1: The debugging script is located in Utilities/DbgAndroidLldb.ps1
. To run it manually you will need to run the following in powershell:
Of course, adjust the paths so they match your local plEngine checkout location and Android build config. This will either fail with an error message or should start the apk on your device, showing the wait for debugger prompt.
Step 2: Start the lldb
shell from any LLDB installation of your choosing and run the following commands in the shell:
Run each line at a time. No errors should show up. command source
is written by DbgAndroidLldb.ps1
and contains the commands to connect to the device and running process. DbgAndroidJdb.ps1
connects the java debugger in a fire and forget fashion to close the Waiting for debugger prompt on the device. Finally continue
will start running the paused application.
See Also
Building plEngine