can i build and package my ios app separately with xcodebuild? -
i using xcodebuild commandline tool generate ios app(mainly c++ source code). command
xcodebuild -project application.xcodeproj
i want ask whether can separate build phase , package phase, say, first build binary executable, @ sometime package app later.
from apple technical note, xcodebuild supports various build actions such build, analyze, , archive can performed on target or scheme. however, build performed default when no action specified
. so, when want package, specify action archive
otherwise leave empty shown in apple example in document.
Comments
Post a Comment