Pregunta

I just realized that something is not working because the case doesn't match in my bundle IDs between iTunes connect and my app in Xcode.

I've run into problems before with case mismatch, so I want to get a consensus on how to fix this problem before I try anything.

The iTunes connect version has an all lower case bundle ID. My project in Xcode has lower case for the revers domain name part but a capital letter for the first letter of the last word.

What's the best way to fix this without creating more problems?

¿Fue útil?

Solución

You should simply hardcode the bundle ID to a string that matches the Bundle ID in iTunes Connect, rather than using the ${PRODUCT_NAME} variable. That way, even if you were to change the app name, the bundle ID will always match.

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top