Advertisement
Guest User

Untitled

a guest
Jun 26th, 2019
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.28 KB | None | 0 0
  1. desc 'Build the iOS application.'
  2. lane :build do #|options|
  3. match(type: 'appstore', readonly: true)
  4. build_ios_app(
  5. workspace: ENV['IOS_WORKSPACE'],
  6. scheme: ENV['IOS_SCHEME'],
  7. configuration: ENV['IOS_CONFIGURATION'],
  8. include_bitcode: false,
  9. skip_profile_detection: true,
  10. export_method: 'app-store',
  11. export_options: {
  12. method: "ad-hoc",
  13. provisioningProfiles: {}
  14. },
  15. xcargs: "-UseModernBuildSystem=NO" # Equivalent to set xcode workspace build to legacy
  16. )
  17. end
  18.  
  19. desc 'AD-HOC : Build the iOS application.'
  20. lane :buildbis do
  21. match(type: "adhoc", force_for_new_devices: true)
  22. build_ios_app(
  23. workspace: ENV['IOS_WORKSPACE'],
  24. scheme: ENV['IOS_SCHEME'],
  25. configuration: 'AdHoc',
  26. skip_profile_detection: true,
  27. #export_method: 'ad-hoc',
  28. clean: true,
  29. export_options: {
  30. method: "ad-hoc",
  31. provisioningProfiles: {}
  32. },
  33. xcargs: "-UseModernBuildSystem=NO" # Equivalent to set xcode workspace build to legacy
  34. )
  35. end
  36.  
  37. ❌ error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.
  38.  
  39. ** ARCHIVE FAILED **
  40. The following build commands failed:
  41. PhaseScriptExecution [CP] Check Pods Manifest.lock /Users/****/Library/Developer/Xcode/DerivedData/**** ......
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement