Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

App ID for iOS Distribution

I want to submit my app to the App Store. While Creating iOS Distribution Provisioning Profile for App Store Distribution, what App ID should I select? Is it the same as for Development Profile ? Could you please guide me. Thank you.

I already referred http://developer.apple.com/ios/manage/distribution/index.action

like image 595
copenndthagen Avatar asked Mar 15 '11 17:03

copenndthagen


People also ask

Where can I find iOS App ID?

When you enter the Member Center on http://developer.apple.com, click you name on the top right and click on “View Account”. You will find your team ID under the Developer Account Summary. In order to support Universal Links, the Apple App ID will need to be included in your Bitly iOS app configuration.

How do I get an app ID?

You can find this in the app's Play Store URL after 'id'. For example, in https://play.google.com/store/apps/details?id=com.company.appname the identifier would be com.

Can I distribute my app for any device without UDID in iOS?

"No" is the short answer. If you have a Corporate iOS Developer account you can package up apps to be installed directly onto any iOS device (restricted by license) of any employee of your company.

How do I distribute my iOS app outside of the App Store?

iOS developers enrolled in the Standard Program can also distribute an app outside of the App Store on up to 100 different devices for testing purposes only. To use ad hoc distribution, create an archive of your app, or have a teammate send you an iOS App Store Package ( .ipa ) of the archived app.

How do I distribute my Xcode project to the App Store?

Configure the information property list and add icons before you distribute your app. Prepare your Xcode project for distribution before you upload a build to App Store Connect or export a build to distribute it outside of the App Store.

What is an app ID and how do I use it?

An app ID’s primary use is to specify which apps are authorized to be signed and launched. You can configure an app ID to share data between apps and enable an app to use Apple Push Notification Service (APNS), In-App Purchase, iCloud, and Game Center. An app ID has two parts: the team ID followed by the bundle ID search string.

How do I create an app ID in provisioning portal?

To create an app ID. Navigate to the App IDs area of the iOS Provisioning Portal and click New App ID in the upper right. Enter a name for the app ID under Description. This name is for your own use to identify the app ID.


2 Answers

I create a new App ID each time I am ready to submit a new (no updated) app to the store.

From the portal, go to the "App IDs" tab.

Click on the "New App ID" button.

Under "Description": The common name should be something for you; I often use the App Name followed by "iPhone" or "iPad" or "Universal" as applicable.

Under "Bundle Seed ID (App ID Prefix)": Choose Generate New.

Under "Bundle Identifier (App ID Suffix)": As instructed, use something like com.domainname.appname. Remember this and add it to the Info.plist file under "Bundle identifier" in your app or you will not be able to upload it.

like image 93
PengOne Avatar answered Nov 06 '22 01:11

PengOne


Yes, use the same app ID you used for development. The app ID is the application identifier -- it doesn't change according to the way you build the app.

like image 22
Caleb Avatar answered Nov 06 '22 01:11

Caleb