Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -193,12 +193,13 @@ Build

Android Studio
=============
This application has been tested and will build in Android Studio (last test on Chipmunk, 2021.2.1 patch 1).
This application has been tested and will build in Android Studio (last test on Narwhal, 2025.1.1).
Steps to run in Android Studio:
* Open Android Studio
* File -> New -> Project From Version Control...
* Paste in this repository URL if you've setup github already, otherwise setup github
* In Android Studio `Build Variants` window, select variant and target ABI if applicable
* Make sure to set the emulator's preferred ABI to match the build target arm64-v8a
* Run -> Edit Configurations...
* Select `APK from app bundle` for `Deploy` to avoid library build

Expand Down
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ android {
targetSdkVersion 34
externalNativeBuild {
ndkBuild {
arguments "APP_PLATFORM=android-21"
arguments "APP_PLATFORM=android-21", "APP_STL=c++_shared"
abiFilters 'arm64-v8a'
}
}
Expand Down