BitmapFontLoader Android 5.x

I get this stacktrace when I execute my app on Android 5.x. Another device with 4.x works fine. I did read posts about this problem, but it consider only android 4.x. Does work 5.x in general with jme?

 java.lang.NullPointerException: Attempt to invoke virtual method 'java.lang.String[] java.lang.String.split(java.lang.String)' on a null object reference
at com.jme3.font.plugins.BitmapFontLoader.load(BitmapFontLoader.java:63)
at com.jme3.font.plugins.BitmapFontLoader.load(BitmapFontLoader.java:171)
at com.jme3.asset.DesktopAssetManager.loadAsset(DesktopAssetManager.java:288)
at com.jme3.asset.DesktopAssetManager.loadFont(DesktopAssetManager.java:370)
at com.jme3.app.SimpleApplication.loadGuiFont(SimpleApplication.java:179)
at com.jme3.app.SimpleApplication.initialize(SimpleApplication.java:187)
at com.jme3.app.AndroidHarness.initialize(AndroidHarness.java:455)
at com.jme3.system.android.OGLESContext.initInThread(OGLESContext.java:229)
at com.jme3.system.android.OGLESContext.onSurfaceCreated(OGLESContext.java:205)
at android.opengl.GLSurfaceView$GLThread.guardedRun(GLSurfaceView.java:1500)
at android.opengl.GLSurfaceView$GLThread.run(GLSurfaceView.java:1239)

Are you using JME 3.0 by any chance? (important information)

I sort of remember this one being fixed in 3.1.

Yes we use 3.0 JME3 from Maven.

net.sf.sociaal jME3-core 3.0.0.20130526

How can i find Version 3.1 in Maven Repository?

Thanks for help.

Check it out from GIT and build it, I think.

What is that? Theres no such version in the official jME repo. Some idiot uploaded a random outdated jME build to the open maven repo, nice… -.-

http://updates.jmonkeyengine.org/maven/

Hi norman,

thanks for this link. I add it now to my pom.xml but Maven-Eclipse-Plugin can not find Artifacts. The Repository-Index always empty. I rebuild index but do not help. What steps must i do to successful download artifacts from this repository?

My pom.xml part:

<repositories>
        <repository>
            <id>com.jmonkeyengine</id>
            <name>jmonkeyengine</name>
            <url>http://www.jmonkeyengine.com/maven/</url>
        </repository>
    </repositories>

Thanks for help.

Maybe use the actual URL I posted…

http://wiki.jmonkeyengine.org/doku.php/jme3:maven

Index with url http://updates.jmonkeyengine.org/maven/ is always empty.

But if i manuel referenced the artifacts does it work.
Thanks