2

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...

Amar
  • 13,202
  • 7
  • 53
  • 71
unikat
  • 341
  • 2
  • 5
  • 14
  • Please see below link http://stackoverflow.com/questions/10411341/can-i-distribute-and-not-develop-my-ios-app-on-the-app-store-using-windows-mac – Dipen Chudasama Sep 30 '13 at 06:55

2 Answers2

1

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

Community
  • 1
  • 1
Dipen Chudasama
  • 3,063
  • 21
  • 42
  • 1
    This should be a comment as you are merely quoting from one answer given in the link. You have not added anything new in it. – Puneet Sharma Sep 30 '13 at 07:17
  • yes so what...? User directly see this comment without redirecting on link thats why I put that comments at here and also provide link as well... whats wrong...? – Dipen Chudasama Sep 30 '13 at 07:27
  • See first of all I did not downvote your answer. Second, I suggested you should comment so as to avoid duplicity in SO. It does not help anyone to ask and answer duplicate questions if it can be avoided. Read http://meta.stackexchange.com/questions/10841/how-should-duplicate-questions-be-handled. – Puneet Sharma Sep 30 '13 at 07:41
0

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

Community
  • 1
  • 1
mshau
  • 503
  • 4
  • 19