Skip to content

How to submit to App Store Connect #1744

Answered by anthonydito
anthonydito asked this question in Q&A
Discussion options

You must be logged in to vote

If anybody finds this useful, here are the things that I needed to do to get a project that I had developed using Tulsi into app store connect.

  1. Added these keys into my Info.plist
	<key>CFBundlePackageType</key>
	<string>APPL</string>
	<key>UIRequiredDeviceCapabilities</key>
	<array>
		<string>arm64</string>
	</array>
  1. Build the app with Bazel

bazel build //ios:ios_prod --apple_generate_dsym --ios_multi_cpus=arm64 --define=apple.add_debugger_entitlement=no

Note, you need to use a production provisioning profile. I ended up creating a whole new ios_application that specifies this provisioning profile instead of my development.

  1. Deploy to App Store Connect

xcrun altool --upload-app -…

Replies: 2 comments 5 replies

Comment options

You must be logged in to vote
5 replies
@anthonydito
Comment options

@keith
Comment options

@anthonydito
Comment options

@keith
Comment options

@anthonydito
Comment options

Comment options

You must be logged in to vote
0 replies
Answer selected by anthonydito
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants