Game ready - now what?
Hi people. I have a question (please forgive my ignorance, as I'm very new to GS, and still finding my way around) : I've put together my first game, created my levels, added my sound etc. but am unsure where to find the instructions as to what to do next in order to get my game checked, and onto the Apple app store. I am a GS Pro member, and signed up as an Apple Developer. There's been a lot of information to take in over the past couple of weeks, so my head's a little fuzzy. Could somebody please point me in the right direction? Many thanks.
Best Answers
-
KiwiLee Posts: 181
I'd be keen to understand this too as well as adhoc builds and device testing setup :-) -
IsabelleK Posts: 2,807
First you need to set up App ID, and profiles in iOS Provisioning Portal, then set everything up in iTunes Connect, and then use Application Loader from Xcode to send your game -
thelogobar Posts: 93
Have you created an Ad Hoc build for testing on your device yet? You'll need Xcode too.
This tutorial by @tshirtbooth is splendid. -
Chobbiface Posts: 491
Here's a quick summary. In order to publish you need 3 things:
1. Certificates
2. App ID
3. Provisioning profile
1. Certificates
- need WWDR certificate
- development certificate (for testing purposes on your device)
- distribution certificate for publishing to app store
These usually last ages (about a year or so) once you get them, so don’t need to constantly update.
2. App ID - need a unique one for each app to be published
- each app has a bundle identifier - usually in this format e.g. com.kobayaashi.appid
3. Provisioning profile - also need a unique one for each app to be published as it’s linked to a unique appid
- think of this as a bus pass, it can be linked to one person (appid) only. You need a pass before any app can be tested on a phone or distributed.
There are development provisioning profiles OR distribution provisioning profiles (appstore or adhoc) - you will need distribution for appstore
Provisioning profiles (the pass which contains all the info. about your app) must be downloaded, double click and they will be in xcode.
Next
Use gamesalad and open your project file and publish, select the provisioning profile made for this app (which should be linked to the appid made for this app you’re going to publish). Fill in all the rest of the details and at the end, you will get the actual app file after this, check size then right click and compress.
Finally…..
There’s Itunes connect (https://itunesconnect.apple.com) - where you must have setup your app there - put all the information in there such as icon, screenshots, description, pricing etc. Once done, use 'application loader' on your mac (just search your mac) to upload the app file/binary you zipped earlier and voila, you’re rich.
This is just a brief overview, I suggest you take a look at the cookbook tutorial http://cookbook.gamesalad.com/tutorials/3/parts/12 for a more detailed run down.
Good luck
-
jonmulcahy Posts: 10,408
Here is the cookbook tutorial on publishing
http://cookbook.gamesalad.com/tutorials/3/parts/12
Before you publish I highly recommend you use testflight app for beta testing.
Answers