Advertisement
Guest User

Untitled

a guest
Jan 20th, 2025
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. default_platform(:ios)
  2.  
  3. platform :ios do
  4. lane :beta do
  5. cocoapods(
  6. clean_install: true,
  7. podfile: "./Podfile"
  8. )
  9.  
  10. build_app(
  11. workspace: "./Unity-iPhone.xcworkspace",
  12. configuration: "Release",
  13. scheme: "Unity-iPhone",
  14. output_directory: "result",
  15. output_name: "MyApp.ipa",
  16. export_options: {
  17. method: "ad-hoc"
  18. }
  19. )
  20. end
  21. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement