Reputation: 522
I just installed the Intellij RoboVM plug in but there is no option for Build > CreateIPA. I have seen many tutorials where you can create a .ipa from intellij. Thanks in advance.
Upvotes: 1
Views: 998
Reputation: 7737
This question has already been answered How do I specify what provisional profile RoboVM Gradle uses?
Just use ./gradlew createIPA
and be sure to use add signing configuration in the build.gradle in ios directory
robovm {
// Configure robovm
iosSignIdentity = "YOUR IDENDITY"
iosProvisioningProfile = "YOUR PROVISIONING PROFILE"
iosSkipSigning = false
stdoutFifo = ""
stderrFifo = ""
}
as given in https://github.com/robovm/robovm-gradle-plugin
Upvotes: 1