4

While trying to upload Application on App Store using Xcode 9.2 from system A, it works just fine but while trying the same from system B with the same code and same Xcode version it doesn't allow me to select Provisioning profile on 1st step. It says "No Profile Required" for App file.

Tried these possible solutions for this.

  1. Removed all certificates and installed again.
  2. Cleaned project temp files.
  3. Re-installed Xcode 9.2.

Here are the screenshots of what I am getting in the xcode 9.2

System A -

enter image description here

System B -

enter image description here

Error I am getting on System B is -

enter image description here

Expected Results: Upload process should work on System B same as System A.

Actual Results: While trying to upload Application on App Store using Xcode 9.2 from system A, it works just fine but while trying the same from system B with the same code and same Xcode version it doesn't allow me to select Provisioning profile on 1st step. It says "No Profile Required" for App file.

Version/Build: Xcode 9.2

Saurabh
  • 22,743
  • 12
  • 84
  • 133

4 Answers4

1

Actually, with the help of @jcesarmobile's comment above, I finally noticed something in your redacted screenshots I didn't catch. They are correct. The reason it is not letting you select a profile is that you are not attempting to submit the app on machine B. You are submitting the framework. Because frameworks use the code signing of the apps they are used in, it is not necessary to specify a profile for a framework.

Something is wrong with your archive that is causing it to have the Framework and not your app and the embedded framework.

wottle
  • 13,095
  • 4
  • 27
  • 68
0

Try transferring the certificates from system A to system B.

To export from system A:

Go to Xcode->Preferences->Accounts, click the "Settings" icon (bottom left corner, next to the +-) and choose "export".

To import to System B:

Same as the above, only this time choose "import".

Good luck.

Arik Segal
  • 2,963
  • 2
  • 17
  • 29
0

Add Developer account to xcode then try also make sure you have selected your project and should not selected any third part library

0

Same issue after transfer of project from computer A to B However, although it says:Provisioning Profile: None require And: Signing Certificate: Development (or locally as choice) Upon upload to the App Store the right signing certificate is added and profile still says none (although all profiles are there). App got accepted after 3 days (longer than usual) and is fully functional. Export as notarised app is also functional. Xcode 11.6

Seeker
  • 1
  • 1
  • Welcome to StackOverflow. Please make sure that what you are posting is an answer to the question and not an attempt to get help to your own question. – fcdt Aug 20 '20 at 20:02