https://github.com/jmonkeyengine/jme-android-native
Android native libraries used by jMonkeyEngine.
https://github.com/jmonkeyengine/jme-android-native
Last synced: 21 days ago
JSON representation
Android native libraries used by jMonkeyEngine.
- Host: GitHub
- URL: https://github.com/jmonkeyengine/jme-android-native
- Owner: jMonkeyEngine
- License: bsd-3-clause
- Created: 2026-05-23T10:17:27.000Z (21 days ago)
- Default Branch: master
- Last Pushed: 2026-05-23T12:54:09.000Z (21 days ago)
- Last Synced: 2026-05-23T13:24:34.471Z (21 days ago)
- Language: C
- Homepage:
- Size: 69.3 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# jmeAndroidNatives
Android native libraries used by jMonkeyEngine.
This project is extracted from the old `jme3-android-native` module so the Android natives can have their own build and release cycle. The published Maven artifact intentionally keeps the existing artifact id:
```groovy
implementation "org.jmonkeyengine:jme3-android-native:"
```
`./gradlew assemble` builds the native libraries from source and packages them into an Android AAR. An Android SDK, Android NDK, and CMake must be available.
Native build targets are configured in `gradle.properties`:
```properties
androidAbis = arm64-v8a,x86_64
androidPlatform = android-21
```
Non-release builds use `baseVersion` from `gradle.properties` with `-SNAPSHOT` appended. GitHub release jobs pass `-PreleaseVersion` from the release tag.
The JNI headers in `src/native/headers` are the ABI contract with `jme3-android`.