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
2
votes
1 answer

UnsatisfiedLinkError when deploying an iOS libGDX game with RoboVM and IDEA

I'm trying to deploy the base libGDX game (the default project that is created with libGDX's setup tool, version 1.5.5) to an iPhone 5 using IDEA 14.1.1 and latest RoboVM snapshot but I'm getting an UnsatisfiedLinkError. Using the simulator I get…
jgg
  • 967
  • 2
  • 10
  • 19
2
votes
0 answers

Running RoboVM on Android as a pre-compiled app

My question is an odd one, our company users RoboVM to run our android libGDX game on iOS and it works great. We have noticed that iOS performance is substantially better, even with all rendering off. We've looked into this very deeply. It seems…
2
votes
0 answers

clojure and robovm for binary executables?

I'm interested in compile clojure code to native app with robovm, similar to scala https://github.com/roboscala/roboscala-samples I need run small scripts, create a native binary could help me to avoid a big jvm which consume a lot of resources and…
user1050817
  • 915
  • 2
  • 11
  • 21
2
votes
2 answers

libGDX/roboVM: How to fix "Native Library libhfscompressor.dylib already loaded in another classloader"?

I'm using roboVM (1.0.0) with libGDX (1.5.5) in Android Studio (1.1.0) and face the problem that execution on an iOS device works only after deleting the gradle directory (~/.gradle). Without prior deletion of ~/.gradle, execution fails with the…
SePröbläm
  • 5,142
  • 6
  • 31
  • 45
2
votes
4 answers

iOS app crashes at launch because of distribution profile? (libgdx + robovm)

My iOS app was rejected twice for submission for the same reason: crash at start. Given the logs I guess it comes from my provisioning profiles and sign identity. I am using Libgdx 1.5.x with RoboVM beta 4, with Eclipse When I build the app with no…
Don
  • 977
  • 3
  • 10
  • 28
2
votes
0 answers

IOS apps on Linux with RoboVM

I've managed to make an IOS app in objective C on Linux using this toolchain: https://code.google.com/p/ios-toolchain-based-on-clang-for-linux/wiki/HowTo_en I can write java in Linux obviously and get RoboVM plugin for Eclipse Is there any way to…
Hamzah Malik
  • 2,540
  • 3
  • 28
  • 46
2
votes
3 answers

Error running in iOS libgdx application

Error log when executing the app in ios simulator device. I'm using iOS8 simulator with libgdx latest build 1.4.1. 2014-12-10 13:07:42.902 IOSLauncher[1395:56847] [debug] IOSApplication: iOS version: 8.0 2014-12-10 13:07:42.907…
birdLover
  • 25
  • 6
2
votes
1 answer

Multi-touch on Robovm using Libgdx

I'm using libgdx 1.4.1 and robovm version 1.0.0-alpha-04. I enabled Stage input by using : Gdx.input.setInputProcessor(stage);and added two buttons to the screen that should be touched together. When the first button is touched down the TouchDown…
ASM
  • 363
  • 1
  • 2
  • 14
2
votes
1 answer

libGDX on SBT: roboVM backend is referencing the wrong ASM version

When trying to compile my Game with roboVM, I keep getting the error: java.lang.IncompatibleClassChangeError: class org.robovm.compiler.plugin.objc.ObjCProtocolProxyPlugin$1 has interface org.objectweb.asm.ClassVisitor as super class I have…
Danyel
  • 2,180
  • 18
  • 32
2
votes
1 answer

UIActivityViewController doesn't show on iPhone + iOS 8

I'm trying to present a UIActivityViewController from an OpenGL view (using libGDX/RoboVM) but am having mixed results. It works fine on iOS 7 and on iOS 8 iPad, but on iOS 8 iPhone it simply pauses the application without anything happening.…
8bitworkshop
  • 121
  • 2
2
votes
1 answer

Robovm : registering for push notification on IOS7 & IOS8

I am trying to register for push notifications on robovm.0.0.14 using my own simple binding PushManager as follows: #import "PushManager.h" @implementation PushManager -(void) registerForPushNotifications { NSLog(@"Registering for push…
Fuat Coşkun
  • 1,045
  • 8
  • 18
2
votes
1 answer

Can't import robovm bindings

I am trying to be able to put admob ads in my iOS libGDX game from RoboVM bindings that I found here. I began at first following these instructions, however couldn't even finish the first step (which is importing) because it still used the classic…
2
votes
0 answers

Libgdx robovm build error

I'm trying to run my libgdx app on iOS using robovm it compiles all the classes but at the end it gives me this error. Build failed. Check the RoboVM console for more information. Cannot run program "2014-05-25 15:22:54.333 xcodebuild[761:d07] [MT]…
JCodes13
  • 488
  • 5
  • 17
2
votes
2 answers

RoboVM plugin 0.0.11 not working with eclipse

When I create a RoboVM Eclipse project, Eclipse gives me an exception: The selected wizard could not be started. Plug-in org.robovm.eclipse.ui was unable to load class org.robovm.eclipse.internal.NewCocoaTouchProjectWizard. An error occurred while…
2
votes
1 answer

Generating IPA with gradle libgdx project

I try to generate my IPA with $ gradlew ios:generateIPA from commandline but I receive this error: FAILURE: Build failed with an exception. * What went wrong: Execution failed for task ':ios:createIPA'. > No @Marshaler found for parameter 3 of…