Xcode

Hello, I'm not a developer. I have an app in the App Store and an Apple Developer account. I have two questions: 1. I'm trying to find out exactly where the source code of my app is located - I can't. It should be in Xcode. There is only Xcode cloud in my account, which is inactive. 2. I want to find out what programming language my app is written in. How do I do this?

Answered by DTS Engineer in 847134022
do I have access to this code in my account.

You do not.

Speaking generally…

When a developer ships an app on the App Store they compile the source code into a built binary and then upload the binary to App Store Connect. Given that, App Store Connect never sees their source code [1].

Most developers manage their source code using a version control system, often with the repository managed by a cloud service. The canonical example of these are Git and GitHub, but there are numerous alternatives. That’s where you need to look for your source code.

Share and Enjoy

Quinn “The Eskimo!” @ Developer Technical Support @ Apple
let myEmail = "eskimo" + "1" + "@" + "apple.com"

[1] That’s generally true, but not universally true. for example, if a developer based their app on web technologies then the built binary is likely to contain various bits of HTML and JavaScript that could be considered source code. However, and this is key, there’s no easy way to rebuild the app based on these incomplete chunks of source code.

Here's how it works:

  • A developer writes the source code, and creates an app.
  • The app is built and uploaded to an App Store Connect account.
  • The app is made available on the App Store.

Did someone wrote your app for you? If so, they will have the source code. You should ask them for it.

If someone did not write the app for you, then how do you have an app on the App Store? Did you buy an app from some dodgy business that just packaged it for you and put it on the App Store?

I hired a developer to make an app. What I want to understand is how my App Store Connect account works, what it contains, what happens to the code uploaded by the developer, do I have access to this code in my account.

Accepted Answer
do I have access to this code in my account.

You do not.

Speaking generally…

When a developer ships an app on the App Store they compile the source code into a built binary and then upload the binary to App Store Connect. Given that, App Store Connect never sees their source code [1].

Most developers manage their source code using a version control system, often with the repository managed by a cloud service. The canonical example of these are Git and GitHub, but there are numerous alternatives. That’s where you need to look for your source code.

Share and Enjoy

Quinn “The Eskimo!” @ Developer Technical Support @ Apple
let myEmail = "eskimo" + "1" + "@" + "apple.com"

[1] That’s generally true, but not universally true. for example, if a developer based their app on web technologies then the built binary is likely to contain various bits of HTML and JavaScript that could be considered source code. However, and this is key, there’s no easy way to rebuild the app based on these incomplete chunks of source code.

Xcode
 
 
Q