This repository was archived by the owner on Oct 26, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 108
Building NDK Projects
Jan Berkel edited this page Nov 15, 2011
·
5 revisions
There is some basic NDK support in the android-plugin.
For now, it doesn't do anything else than call ndk-build during compilation
and clean up the obj and libs directories during cleanup.
This depends on an environment variable being set up: either ANDROID_NDK_HOME
or ANDROID_NDK_ROOT
.
Place your Android NDK sources in src\main\jni
. Add the AndroidNdk.settings to your project:
lazy val someProjectUsingNDK = Project(
id = ...,
...
settings = ... ++ AndroidBase.settings ++ AndroidNdk.settings
)
- Getting started
- Scala versions
- Android Manifest generation
- Typed resources references
- ProGuard
- DDMS integration
- Building Java Android projects
- Building NDK projects
- Consuming Android Library projects
- Github integration
- Building Android Test Projects
- Password Manager
- Releasing to the Android Market
- Projects using sbt-android-plugin
- Contributors