unikat
unikat

Reputation: 341

Deploying iOS app without Xcode?

I have developed an iOS app which now should be deployed into the app store. The problem is, that my client want to do this on his own.

What steps are necessary? And is it possible to deploy the app without Xcode or even from a Windows PC?

Thank you for your help...

Upvotes: 2

Views: 2680

Answers (2)

Dipen Chudasama
Dipen Chudasama

Reputation: 3093

Please see below link.

For submission to appstore you need mac ios. if you don't have mac. get a virtual machine and install mac on it if your processor suport virtualization technology. Mostly newly processor supposrt it like core series

Can I distribute (and not develop) my iOS app on the app store using Windows machine

Upvotes: 1

mshau
mshau

Reputation: 503

Build your App into an .app file with a "Release" schema:

xcodebuild -target "${PROJECT_NAME}" -sdk "${TARGET_SDK}" -configuration Release Package your App as an .ipa:

/usr/bin/xcrun -sdk iphoneos PackageApplication -v "${RELEASE_BUILDDIR}/${APPLICATION_NAME}.app" -o "${BUILD_HISTORY_DIR}/${APPLICATION_NAME}.ipa" --sign "${DEVELOPER_NAME}" --embed "${PROVISONING_PROFILE}” Then, run Application Loader (Download/Install Application Loader if necessary):

open -a /Developer/Applications/Utilities/Application\ Loader.app

Try this Way using Application Loader Application loader for submission

Upvotes: 0

Related Questions