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

LibGDX : Deploying to iOS device : ApplicationVerificationFailed

So, I have been trying for a couple of days now to deploy to my phone. I am a paid iOS developer. I have made a demo iOS app to test the bundle id works. I cant get LibGDX to deploy. My Phone is running iOS 9 beta 3 So Bundle id…
Burf2000
  • 5,001
  • 14
  • 58
  • 117
4
votes
1 answer

How to use Crashlytics with RoboVM iOS binding?

I'm trying to connect Crashlytics to my LibGDX project using RoboVM iOS bindings. I followed instructions from bindings web page: downloaded jar-file, put it in libs, modified build.gradle, synced... I also added from robovm.xml of the…
Rara
  • 639
  • 9
  • 22
4
votes
1 answer

RoboVM don't see my signing identity

I am trying to export my libgdx game to .ipa. First I got such error: No signing identity found matching 'iPhone Distribution: Alon Zilberman (Y59452PXMM)' Than I checked that I really have identity this way: security find-identity -v -p…
Alon Zilberman
  • 2,120
  • 1
  • 16
  • 16
4
votes
1 answer

How do I specify what provisional profile RoboVM Gradle uses?

I searched around a bit and I found to edit build.gradle to be something like this project(":ios") { apply plugin: "robovm" ..... robovm { iosSignIdentity = "" iosProvisioningProfile = "" iosSkipSigning = false …
Kenneth Wang
  • 191
  • 10
4
votes
1 answer

Accessing image gallery and camera with RoboVM

First of all I appreciate so much your support and responses to the doubts posted here. I am developing an App that needs access to image gallery and camera because it has a user configuration screen. I believe I have research well enough about how…
4
votes
1 answer

libGDX RoboVM allowIpod does not work if game starts then paused

I am developing a game for iOS using libGDX and Robovm; however, I need to make it possible for the user to keep background music (ipod or other apps) playing while playing the game. I added the configuration parameter allowIpod to…
Moh'd Al-Ahmad
  • 217
  • 2
  • 12
4
votes
0 answers

Fatal error when running roboVM with libGDX app

I'm trying to run my libGDX app with roboVM. However, when I either try running it on the ios simulator or on a provisioned ios device, I get the following fatal error: [INFO] Building RoboVM app for: ios (thumbv7) [INFO] Compiling RoboVM app, this…
kabb
  • 2,474
  • 2
  • 17
  • 24
4
votes
1 answer

Libgdx project for iOS displaying libgdx splash when compiling through robovm on simulator?

How can I remove libgdx splash screen which appears on iOS simulator but doesn't showed up in android emulator. I am compiling my libgdx project through robovm. Thanks
4
votes
1 answer

Libgdx & RoboVM to app store

I can compile and run my game using LibGDX 0.9.9 and RoboVM 0.0.7 I have been able to build an ipa for app store submission. Uploading my app with Application Loader, I get an error saying: This bundle is invalid. Apple is currently not accepting…
Patrick Lorio
  • 5,520
  • 11
  • 45
  • 74
4
votes
2 answers

RoboVM bindings compiling problems

Using RoboVM bindings: https://github.com/BlueRiverInteractive/robovm-ios-bindings more specifically Google Play Game Service bindings. I can't seem to be able to compile the bindings. Getting this error: An internal error occurred during:…
4
votes
1 answer

How to get application version using libgdx/robovm

I have some questions about getting the version of application developed on top of libgdx (and also on robovm for ios) I want to get the version information That is declared in android:versionName tag of AndroidManifest.xml for Android That is…
Mehmet Ataş
  • 11,081
  • 6
  • 51
  • 78
3
votes
1 answer

How to access files in Assets folder from iOS module in Libgdx?

I am trying to get image form assets folder to display it in notification form iOS module. But i could get any solution how to access assets folder from iOS module in android its working just by calling getAssets() but there is no similar function…
Amar Maharjan
  • 220
  • 4
  • 12
3
votes
1 answer

Unable to select iOS simulator via RoboVM IntelliJ IDEA plugin on Android Studio

I'm experiencing an issue where I am unable to select an iOS simulator via RoboVM IntelliJ IDEA plugin on Android Studio. Under Run/Debug Configurations, when I try to create a new RoboVM iOS configuration and select Simulator type, the Device Type…
Dee
  • 573
  • 1
  • 4
  • 10
3
votes
0 answers

Listener not responsive on iOS port

I'm porting my Android game written with the libGDX engine to iOS using RoboVM. The game works fine but all the ImageButton and TextButton do not respond to touch inputs every time they are touched. The buttons respond sometimes but it is only after…
3
votes
1 answer

Why am I getting ObjCClassNotFoundException: GADInterstitial in RoboVM?

I am implementing admob in my iOS module using this guide. I have a view controller where my interstitial ads are initialized like this @CustomClass public class ViewController extends UIViewController implements ActionResolver { private…
Zack
  • 1,527
  • 2
  • 20
  • 32
1 2
3
22 23