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.
- navigate .xcarchive file in finder
- right click on .xcarchive file , select "show package contents" in popup menu
- the finder switch showing contents of .xcarchive file.
- navigate products/applications
- 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
Post a Comment