Advertisement
progrmor

Untitled

Jun 15th, 2015
244
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. sourceSets.main.java.srcDirs = [ "src/" ]
  2.  
  3. sourceCompatibility = '1.7'
  4. [compileJava, compileTestJava]*.options*.encoding = 'UTF-8'
  5.  
  6. // Apply the plugin
  7. apply plugin: 'robovm'
  8.  
  9. ext {
  10. mainClassName = "com.test.Test.IOSLauncher"
  11. roboVMVersion = "1.3.0"
  12. }
  13.  
  14.  
  15. launchIPhoneSimulator.dependsOn build
  16. launchIPadSimulator.dependsOn build
  17. launchIOSDevice.dependsOn build
  18. createIPA.dependsOn build
  19.  
  20. robovm {
  21. // Configure robovm
  22. iosSignIdentity = "xxxxxxxxxx"
  23. iosProvisioningProfile = "xxxxxxxxxx"
  24. iosSkipSigning = false
  25. stdoutFifo = ""
  26. stderrFifo = ""
  27. }
  28.  
  29.  
  30. eclipse.project {
  31. name = appName + "-ios"
  32. natures 'org.robovm.eclipse.RoboVMNature'
  33. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement