I'm trying to configure RoboVM
to build my LibGDX
project for iOS.
In my build.gradle
project(":ios") {
apply plugin: "java"
apply plugin: "robovm"
configurations { natives }
dependencies {
compile project(":core")
compile "org.robovm:robovm-rt:${roboVMVersion}"
compile "org.robovm:robovm-cocoatouch:${roboVMVersion}"
compile "com.badlogicgames.gdx:gdx-backend-robovm:$gdxVersion"
natives "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-ios"
natives "com.badlogicgames.gdx:gdx-freetype-platform:$gdxVersion:natives-ios"
}
robovm {
// Configure robovm
iosSignIdentity = "ABCD123455442D6E878394E55925E0987654321"
iosProvisioningProfile = "/path/to/profile.mobileprovision"
iosSkipSigning = false
stdoutFifo = ""
stderrFifo = ""
}
}
I'm not sure if what I have for iosSignIdentity is correct either, those characters (well not those ones, but close) are the sequence returned by security find-identity -v -p codesigning
So far it's completely refused to see my provisioning profile file that I downloaded from Apple. The error I get is:
> No provisioning profile found matching '/path/to/profile.mobileprovision'
I've been bashing my head against this for days. Any ideas?