Home > Net >  Understanding GitHub branches - which branch to use to submit to App Store?
Understanding GitHub branches - which branch to use to submit to App Store?

Time:09-25

I'm just about have my first App ready to send to be validated by AppStore. My build is currently using the develop branch of AudioKit. Should I be submitting using the main branch? I'm running Xcode 13 and the main branch just causes loads of errors.Should probably have stuck in Xcode 12!

I guess the answer must be the latest main branch but I'm a bit unsure

Also I'm wonder if and how to credit AudioKit?

Or indeed generally how does one credit 3rd party frameworks? if at all?

I have an "About" view in the App itself and was just going to put "Built using AudioKit" there and on the App Store details. Can't find any other decent example on the App Store to go by.

CodePudding user response:

You should use a release version of AudioKit so that your builds are tied not a specific release. AudioKit is free and open-source and we don't require you to give us any credit, but if you do that it's very nice.

  • Related