Could not find /javafx.platform.properties on classpath

316 Views Asked by At

Last month i build many gluon apps for android mobile. They were working. But now when i build apk using same way they are not working, and generating this error on android mobile Unfortunately GluonSingleViewApp has stopped. I searched about two weeks on this problem but not find any solutions. Now i need your help community.

After building many projects including samples provided by gluon, netbeans gluon sample projects and falilure i followed simple approach.

In netbeans i make simple new GluonSingleView app and apply task>android>androidInstall.

When i run app in mobile it shows error Unfortunately GluonSingleViewApp has stopped.

I do not changed any thing this my my gradle.build file.

  buildscript {
      repositories {
          jcenter()
      }
      dependencies {
          classpath 'org.javafxports:jfxmobile-plugin:1.3.12'
      }
  }

  apply plugin: 'org.javafxports.jfxmobile'

  repositories {
      jcenter()
      maven {
          url 'http://nexus.gluonhq.com/nexus/content/repositories/releases'
      }
  }

  mainClassName = 'com.gluonsingleviewapp.GluonSingleViewApp'

  dependencies {
      compile 'com.gluonhq:charm:5.0.0'
  }

  jfxmobile {
      downConfig {
          version = '3.8.0'
          // Do not edit the line below. Use Gluon Mobile Settings in your project context menu instead
          plugins 'display', 'lifecycle', 'statusbar', 'storage'
      }
      android {
          manifest = 'src/android/AndroidManifest.xml'
      }
  }

This is the LogCat generated by Android Monitor

FATAL EXCEPTION: main
Process: com.gluonsingleviewapp, PID: 14831
java.lang.RuntimeException: Did not create correct launcher.
    at javafxports.android.FXDalvikEntity.getLauncherAndLaunchApplication(FXDalvikEntity.java:165)
    at javafxports.android.FXDalvikEntity.surfaceCreated(FXDalvikEntity.java:304)
    at android.view.SurfaceView.updateWindow(SurfaceView.java:712)
    at android.view.SurfaceView$3.onPreDraw(SurfaceView.java:209)
    at android.view.ViewTreeObserver.dispatchOnPreDraw(ViewTreeObserver.java:1014)
    at android.view.ViewRootImpl.performTraversals(ViewRootImpl.java:2510)
    at android.view.ViewRootImpl.doTraversal(ViewRootImpl.java:1437)
    at android.view.ViewRootImpl$TraversalRunnable.run(ViewRootImpl.java:7397)
    at android.view.Choreographer$CallbackRecord.run(Choreographer.java:920)
    at android.view.Choreographer.doCallbacks(Choreographer.java:695)
    at android.view.Choreographer.doFrame(Choreographer.java:631)
    at android.view.Choreographer$FrameDisplayEventReceiver.run(Choreographer.java:906)
    at android.os.Handler.handleCallback(Handler.java:739)
    at android.os.Handler.dispatchMessage(Handler.java:95)
    at android.os.Looper.loop(Looper.java:158)
    at android.app.ActivityThread.main(ActivityThread.java:7224)
    at java.lang.reflect.Method.invoke(Native Method)
    at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1230)
    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1120)
Caused by: java.lang.RuntimeException: Could not find /javafx.platform.properties on classpath.
    at javafxports.android.DalvikLauncher.launchApp(DalvikLauncher.java:81)
    at javafxports.android.FXDalvikEntity.getLauncherAndLaunchApplication(FXDalvikEntity.java:162)
    ... 18 more
0

There are 0 best solutions below