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 } } 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?