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
55
votes
2 answers

Creating an iOS library or framework using libgdx (roboVM)

Is it possible to create an iOS library or framework using libgdx (RoboVM) that can be imported into Xcode? Background: One of my colleagues has created a 3D visualisation app as a libgdx project for android and windows desktop. It can be compiled…
Wayne Shelley
  • 992
  • 10
  • 25
17
votes
14 answers

iOS simulator: could not hardlink copy. Wrong path in my filesystem?

I am using Xcode Version 6.1 (6A1052d) I am trying to launch an app on the simulator. The first time it always works fine. If I want to launch a second time, I have an error (see log below). Then in iOS simulator I "Reset Content and Settings" and I…
Don
  • 977
  • 3
  • 10
  • 28
16
votes
1 answer

How to set “Other Linker Flags” as Xcode in Eclipse?

In my RoboVM project, I used some third part frameworks. But they need add -ObjC to "Other Linker Flags", otherwise it will crash. I know how to add that in Xcode, but in Eclipse, how can I do that?
Donel Chan
  • 161
  • 4
15
votes
1 answer

How to add a share intent with robovm (libgdx)?

So for android devices there is a default share intent function that you call that will list all the apps that is downloaded on the device with that allows sharing of content. How would I do this using robovm, here is a Screen shot of what I am…
Edward Lim
  • 763
  • 9
  • 31
14
votes
1 answer

Libgdx IOS Not Working?

I recently finished making a libgdx app for android, and I am currently trying to port it to ios. I have eclipse kepler installed, with the robovm plugin on top of it. My mac is also running osx mavericks. Now for the actual problem- Whenever i try…
Ashwin Kudva
  • 325
  • 2
  • 16
9
votes
2 answers

Libgdx for iOS with RoboVM - Unsatisfied link error at IOSGLES20.init

Trying to port my LibGDX game to iOS using RoboVM. When running the app for the emulator I get this error: Exception in thread "main" java.lang.UnsatisfiedLinkError: at com.badlogic.gdx.backends.iosrobovm.IOSGLES20.init(Native Method) at…
Bogdan Alexandru
  • 5,394
  • 6
  • 34
  • 54
8
votes
2 answers

Codenameone, Intel's multi-os-engine or Oracle's MAF?

Microsoft is discontinuing RoboVM and I am not even trying to figure out the hassle in companies and startups who have invested in this framework. I see three more JAVA cross platform mobile frameworks sitting out there: Intel's multi-os-engine…
ronline
  • 2,211
  • 1
  • 20
  • 27
8
votes
1 answer

How to use CocoaPods with LibGDX?

I have a LibGDX project which I can run on all platforms that are supported by LibGDX. Recently I started integrating the Google Nearby Messages API. I got it working on Android through platform-specific code, pretty much like the description on…
Amy
  • 1,814
  • 2
  • 23
  • 38
8
votes
1 answer

Opening URLs with the browser - RoboVM/iOS

I have an android game that uses LibGDX. In it, I have some buttons for opening URLs in the browser via: Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://myURL/")); startActivity(intent); And that seems to work fine... The problem…
alpine4
  • 83
  • 1
  • 3
7
votes
4 answers

Gradle hangs on Executing tasks: [:android:generateDebugSources

Since updating my Mac OS X to El Capitan (and android studio from 1.5.1 to 2.x with all tools and sdks) I have problems with my libgdx-robovm game in Android Studio. When I'm doing Gradle Sync it always hangs on: Executing tasks:…
Makalele
  • 7,431
  • 5
  • 54
  • 81
6
votes
1 answer

RoboVM not reading that I have xCode installed?

Here's my problem.. things were working fine until this morning when I had gotten an email from the apple support team saying that the xcode that i have (pre-installed) was compromised and so to cut things short I had to reinstall xCode. And after…
Edward Lim
  • 763
  • 9
  • 31
6
votes
0 answers

robovm 0.0.14 NullPointerException problems

I have migrated my libgdx(1.3), maven, robovm project from 0.0.13 to 0.0.14 for supporting IOS 8 devices. I have modified my robovm.xml file according to release notes and can run on IOS 8 device but getting NullPointerException's in several places.…
Fuat Coşkun
  • 1,045
  • 8
  • 18
6
votes
2 answers

Use sqlite database for iOS (robovm) with libgdx

I have a libgdx project (Android) where I use a sqlite database. I'm developing the same project in iOS version (robovm) and I can't find anything about sqlite or database for iOS version. Is it possible to use the same sqlite database ? Thanks.
Samy Sup
  • 298
  • 2
  • 16
6
votes
2 answers

RoboVM crash after splash screen on iPhone

I was trying to put an iOS app on my iPhone with RoboVM. The app is working in my iOS simulator, but when I try on the phone the app simply crashes after the splash screen. I also got this error: 03/06/14 8:40:38 PM: [ERROR] AppLauncher failed with…
6
votes
0 answers

LibGDX - How to integrate AdMob for both iOS and Android

I am following this tutorial for AdMob integration through LibGDX, but it shows for Android only. I am just wondering if someone has an example how to achieve same integration including iOS? Also, how can I use banners instead of full…
Chale CS
  • 353
  • 4
  • 15
1
2 3
22 23