Build not visible in itunes connect

后端 未结 23 1698
野趣味
野趣味 2020-11-30 19:56

I want to test in app purchases therefore I uploaded build with xcode. I can see the build under \"Prerelase\" but not in \"Versions\". How long does it take to show up in \

23条回答
  •  执笔经年
    2020-11-30 20:12

    When you upload your build from Application loader or directly from your xcode to App Store and it is not showing even on multiple uploads with different build version then

    1. Open your .plist file and check whether there is any key string starting with "Privacy - ........."
    2. If that key string value is empty, then Add some string.
      example, for me i was using camera, photo Library, Microphone and Location.
      For my project i added the string as follows
      a. This app requires access to the Camera.
      b. This app requires access to the Photo Library.
      c. This app requires access to Microphone of your device.
      d. This app requires access to your Location.
      e. This app requires access to the Bluetooth.
    3. Now upload the build it will get Accepted.

    Note: This permission string is mandatory from iOS 10.

提交回复
热议问题