Testing new iOS backend
jMonkeyEngine Hub
June 19, 2026
There was still an issue regarding the default properties not being included, i fixed that in the new snapshot and tested on my apple silicon mac, feel free to try again when you can.
Regarding the old libs being pulled, they are carried over from the jme3-ios module, to test the snapshots, they need to be excluded and replaced by the snapshots, like this:
implementation('org.jmonkeyengine:jme3-ios:3.10.0-beta1') {
exclude group: 'org.ngengine', module: 'libjglios-core-ios'
exclude group: 'org.ngengine', module: 'libjglios-gles-ios'
exclude group: 'org.ngengine', module: 'libjglios-sdl3-ios'
exclude group: 'org.ngengine', module: 'libjglios-openal-ios'
exclude group: 'org.ngengine', module: 'libjglios-angle-ios'
}
implementation('org.ngengine:libjglios-core-ios:0.0-SNAPSHOT')
implementation('org.ngengine:libjglios-gles-ios:0.0-SNAPSHOT')
implementation('org.ngengine:libjglios-sdl3-ios:0.0-SNAPSHOT')
implementation('org.ngengine:libjglios-openal-ios:0.0-SNAPSHOT')
implementation('org.ngengine:libjglios-angle-ios:0.0-SNAPSHOT')
Discussion in the ATmosphere