ios - How to create app file with fastlane for simulator -


i need create fastlane .app file (or .ipa file if works to) next drag , drop simulator on computer. tried gym or xcodebuild parameters don't know how it.

for in way:

  • in xcode build application simulator

  • next searching app file in deriveddata (~/library/developer/xcode/deriveddata/build/products/debug-iphonesimulator/)

  • i copy file somewhere else

but need fastlane.

as can found in issues @ fastline repo, can gym, maybe, better if use xcodebuild (example):

xcodebuild -configuration debug -target targetname -arch i386 -sdk iphonesimulator10.3 

than search ~/library/developer/xcode/archives/<date> (or specify -archivepath) , inside xcarchive.

  1. navigate .xcarchive file in finder
  2. right click on .xcarchive file , select "show package contents" in popup menu
  3. the finder switch showing contents of .xcarchive file.
  4. navigate products/applications
  5. your .app located in products/applications

from here.


here answer, you.


update: if need app file command line can this:

mv /yourxcarchivelocation/archive.xcarchive/products/applications/appname.app /yourdesiredlocation/appname.app 

Comments

Popular posts from this blog

python - How to insert QWidgets in the middle of a Layout? -

python - serve multiple gunicorn django instances under nginx ubuntu -

module - Prestashop displayPaymentReturn hook url -