Questions tagged [robovm]

Robovm is an open source, ahead-of-time compiler for Java bytecode to ARM and x86 executables.

The RoboVM compiler translates Java bytecode into native ARM or x86 code. Apps run directly on the CPU. No interpreter or virtual machine involved. RoboVM enables Java apps to run on iPhone and iPad without a run-time interpreter or JVM.

332 questions
0
votes
1 answer

NoSuchMethodError in Box2D after using agressive in RoboVM

The app crashes on startup. Here is the stack trace. The app works fine with the setting set to "conservative", but I'd definitely like to have it take up less space. Versions: gdxVersion = '1.6.1' roboVMVersion = '1.4.0' This is in dependencies…
crewisforyou
  • 78
  • 1
  • 7
0
votes
1 answer

Launching Libgdx project to IPhonesimulator

Im trying to make sure my app works on IOS. And doing so by trying to launch it to a IPhonesimulator on my mac. doing: ./gradlew ios:launchIPhoneSimulator Makes my app start on the simulator, the standard splashscreen by libgdx appears and then…
Benni
  • 969
  • 1
  • 19
  • 29
0
votes
2 answers

Really strange NullPointerException in RoboVM

If I call the following RoboVM method with any non-null argument: public static void runOnUiThread(final Runnable runnable) { System.out.println("Inside runOnUiThread():"); System.out.println(" Null-check: "+(runnable==null)); …
Markus A.
  • 12,349
  • 8
  • 52
  • 116
0
votes
1 answer

Can't add the Mobile Apps Tracking bindings to my project

I'm trying to use the MAT bindings in my project however it seems that the .jar file is not included on: http://libgdx.badlogicgames.com/robovm-ios-bindings/ I have also tried adding it to my project by downloading the repository from:…
ASM
  • 363
  • 1
  • 2
  • 14
0
votes
1 answer

Parse.com crashreporting Symbols with Robovm

I've implemented the crashreporting into the parse bindings and am able to receive crashes on iOS in Parse. Currently what it says is not useful at all because it's not symbolicated. Until now I've not been able to upload the symbols because of the…
p.streef
  • 3,652
  • 3
  • 26
  • 50
0
votes
1 answer

Ho to use NSTimer in robovm?

I use the NSTimer in robovm , but it not work, I don't know why? here is my code: mTimer = NSTimer.create(1, new VoidBlock1() { @Override public void invoke(NSTimer a) { …
badboy_tqj
  • 300
  • 2
  • 14
0
votes
2 answers

JavaFXPorts and eclipse

Recently i have been trying to transfer my javafx app on android mobile devices. Javafxports seens to be the way to do it, but I am looking for a quick way to do it through eclipse and not using the "command line", to go to a path and run gradle…
javasuns
  • 1,061
  • 2
  • 11
  • 22
0
votes
1 answer

libgdx ios landscape not fullscreen

I have trouble with my app. On iPhone (tested on 5c, 5s, 6) i have two black stripes on both sides (on android all looks well). How i can dispose of them? This is my code for drawing @Override public void create () { mWidth =…
0
votes
1 answer

JavaFXPorts and robovm-cocoatouch import

I’m trying to use JavaFXPorts and RoboVM-cocoatouch but I can’t use the native stuff from RoboVM like UIButton. I have the following dependencies in my build.gradle file: classpath 'org.javafxports:jfxmobile-plugin:1.0.0-b5' classpath…
MichaD
  • 975
  • 2
  • 7
  • 13
0
votes
1 answer

adding file to be read and write in javafxports on android

i want to have some configuration file on my JavaFXPorts Android and iOS. But it seems it don't easy as i expected. Does anyone have any idea to approach the solution? I've already tried. In my proof of concept, i have XML file and it can be read…
Ivancodescratch
  • 405
  • 4
  • 14
0
votes
1 answer

robovm binding admob iOS libgdx

I'm trying to set up my admob ads in my iOS libgdx project but i can't see no ads on iOS emulator I'm using the files from here https://github.com/BlueRiverInteractive/robovm-ios-bindings and they are the latest i know there is 7.0.0 admob iOS sdks…
dvrer
  • 589
  • 6
  • 17
0
votes
1 answer

Bug in receiving data using MPC framework in libgdx game

We're trying to make a multipeer connection between two devices using MPC framework in libgdx game. What generally we've done successfully: Devices are connecting, session is establishing correctly. After session is established nearBrowser and…
E A
  • 93
  • 9
0
votes
1 answer

Gradle: "Refresh All" removes linked project in Java build Path

I am using libgdx to make a ios game with RoboVM. I am using the latest versions of LibGDX, RoboVM and my Eclipse is up to date. Recently I have been trying to add Google Analytics thanks to the Robovm bindings. I have manually imported the…
Don
  • 977
  • 3
  • 10
  • 28
0
votes
1 answer

Undefined symbols Error when add robovm parse binding into libgdx

I am trying to follow the guide at https://github.com/BlueRiverInteractive/robovm-ios-bindings to add parse into my libgdx ios project. I have download parse-1.0.0-beta-03.jar and added it into gradle dependencies. However, when I run…
Bill Lin
  • 1,145
  • 1
  • 11
  • 12
0
votes
1 answer

libgdx iOS httpUrlConnection.connect throw IllegalMonitorStateException

I have a Libgdx game which runs fine on android but when I run it on iOS (libgdx 1.5.2 and robovm 1.0.0-beta-2) I get problems when trying to download an avatar image from facebook. I request the URL using the facebook api. The code (provided below)…
p.streef
  • 3,652
  • 3
  • 26
  • 50