robovm

How do I specify what provisional profile RoboVM Gradle uses?

左心房为你撑大大i 提交于 2019-12-14 03:49:16
问题 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 } } However, no matter what format I put inside the quotations, I get an error when calling gradlew ios:createIPA that the String is wrong. I tried absolute path of the certificate and profile, the name of it displayed inside Keychain Access, none work. Is anyone familiar with this?

How to testing Gluon app on iOS Simulator or Real Device?

孤街浪徒 提交于 2019-12-13 18:15:45
问题 The problem is related to my previous question when I try to execute the gluon application on iOS Device/simulator. It seem not working at all. It show me the following error: launchIPadSimulator : It error Unable to find a matching device [arch=x86_64, family=iPhone, name=null, sdk=null] Edited launchIOSDevice : It error No provisioning profile and signing identity found that matches bundle ID I also checking this question, but It doesn't help me. So the question is How to make it working?

NSRunLoopCommonModes constant in RoboVM

时光总嘲笑我的痴心妄想 提交于 2019-12-13 04:59:20
问题 RoboVM used to include a method ModeCommon() on the NSRunLoop object for access to the NSRunLoopCommonModes constant. That method was removed in later versions. Can I still get access to this constant with the current version of RoboVM? Or can I just hard-code someone String-value? I tried simply using the String "NSRunLoopCommonModes", but it doesn't seem to work... 回答1: This has been moved to NSRunLoopMode.class (NSRunLoopMode.Common) 来源: https://stackoverflow.com/questions/26721462

How to install earlier version of robovm eclipse plugin?

此生再无相见时 提交于 2019-12-13 00:49:32
问题 I have been working on a game project using libgdx. My dev environment is as follows: OS: Mac OSX 10.10.3 IDE: Spring Tool Suite Version: 3.6.4.RELEASE Build Id: 201503100339 Platform: Eclipse Luna SR1 (4.4.2) With Robovm eclipse plugin. ibgdx version: 1.4.1 I have had "auto updates on" through out my development process and it worked well until April 2015 (more or less until robovm 1.2 release I think). I was able to produce ad-hoc releases and get my testers install the app via installrapp

robovm plugin won't work

那年仲夏 提交于 2019-12-12 10:18:05
问题 I'm trying to use robovm on Eclipse. I have installed the robovm plugin. But 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 automatically activating bundle org.robovm.eclipse.ui (244). I get a similar message when I try to go to "Settings" > "RoboVM": Unable to create the selected preference

Gluon Application can't load FXML on ios when I using H2 database as embedded

假装没事ソ 提交于 2019-12-11 11:37:09
问题 I have create Gluon mobile application that using H2 database as embedded mode. It working fine on Window,Mac,Android. But it unluckily it not working on iOS simulator (The fxml can't load). If I comment the code to load Driver, the UI will load properly. Code Load Driver //load the driver class try { Class.forName(DBCONFIG.DB_DRIVER).newInstance(); } catch (ClassNotFoundException e) { System.out.println("class not found"); e.printStackTrace(); } catch (IllegalAccessException e) { System.out

Robovm bindings import issue

时间秒杀一切 提交于 2019-12-11 10:05:16
问题 I am trying to import the RoboVM bindings to implement mopub in my project, but I ran into a problem when I tried to "build model". I tried to import it as a gradle project, but when I build it I get the error: "Error in runnable 'Creating Gradle Model'" And it says: "could not find com.github.jtakakura:gradle-robovm-plugin:0.0.9-SNAPSHOT. Required by: :robovm-ios-bindings-master:unspecified See error log for details" in the error log it said "FAILURE: Build failed with an exception. What

RoboVM implementation of recording demo using AudioQueue results in “No @Marshaler found” error

生来就可爱ヽ(ⅴ<●) 提交于 2019-12-11 08:25:25
问题 I'm trying to implement iOS audio recording using RoboVM using the Apple's AudioQueue guide and their sample SpeakHere project and am running into this error: No @Marshaler found for parameter 1 of @Callback method <AQRecorder: void HandleInputBuffer(AQRecorder,org.robovm.apple.audiotoolbox.AudioQueue,org.robovm.apple.audiotoolbox.AudioQueueBuffer,org.robovm.apple.coreaudio.AudioTimeStamp,int,org.robovm.apple.coreaudio.AudioStreamPacketDescription)> Any ideas? Here's the code I'm using: Main

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

故事扮演 提交于 2019-12-11 03:34:58
问题 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 profile, it builds and runs fine on any simulator. With a developer profile, the app builds and runs fine on my test device. Everything is fine until I set iosSignIdentity and iosProvisioningProfile to distribution, there I am having the following

Running Libgdx Eclipse apps in iOS Simulator via RoboVM

元气小坏坏 提交于 2019-12-07 15:40:59
问题 I can't seem to get RoboVM to run apps in the iOS Simulator via Eclipse. I have followed this guide, but get this error: when I try to do a Run as..../iOS Simulator App (iPhone or iPad). I have also tried some of the LibGDX example applications and get the same message. I can't see any other error messages in the console. I have tried cleaning the project and recreated it several times from scratch. I have also deleted ~/.robovm/cache to force a rebuild. I have the following installed on my