ios提审问题

1.提审反馈4.2.3

Guideline 4.2.3 - Design - Minimum Functionality
We were required to download or unpack additional resources to continue using your app; however, the size of the download was not disclosed, and we were not prompted to choose to download additional resources. If your app requires additional resources, you must disclose the size of the download and prompt users before doing so.

Next Steps

To resolve this issue, please revise your app to include a mechanism to disclose the download size of the additional resources needed to continue using your app. Additionally, be sure to include a prompt to allow users to choose whether or not to start the download of the additional resources.

修改了几次,以下均反馈4.2.3:

  • 首次启动时,需要把资源从streamingAssetsPath解压到persistentDataPath,IO消耗比较大,耗时40s
  • 解压前弹窗提示,有多少mb,不消耗流量。解压过程中有进度条,并显示解压了多少mb
  • 解压步骤优化到13s

最终放弃资源解压方案,直接文件流操作streamingAssetsPath资源,实现秒进,解决此问题。

 

2.提审反馈2.3.3

Guideline 2.3.3 - Performance - Accurate Metadata

We noticed that your screenshots do not sufficiently reflect your app in use.

Next Steps

To resolve this issue, please revise your screenshots to ensure that they accurately reflect the app in use on the supported devices. For example, a gaming app should feature screenshots that capture actual gameplay from within the app. Marketing or promotional materials that do not reflect the UI of the app are not appropriate for screenshots.

For iPhone, you need a set of 5.5-inch display screenshots and for iPad, you need a set for 12.9-inch display. This set will be scaled appropriately down to other device sizes when viewed on the App Store in each territory. 

Note that 6.5-inch display assets for iPhone XS Max are optional, and can scale down to iPhone XR, iPhone XS, and iPhone X. Screenshots that include features like rounded corners or sensor housing should only be used for the 6.5-inch or 5.8-inch display.

App Store screenshots should accurately communicate your app’s value and functionality. Use text and overlay images to highlight your app’s user experience, not obscure it. Make sure app UI and product images match the corresponding device type in App Store Connect. This helps users understand your app and makes for a positive App Store experience.

Resources

For resources on creating great screenshots for the App Store, you may want to review the App Store Product Page information available on the Apple Developer website. 

Please ensure you have made any screenshot modifications using Media Manager. You should confirm your app looks and behaves identically in all languages and on all supported devices. Learn more about uploading app previews and screenshots in App Store Connect Help.

UI给的截图是经过修改美化的,跟游戏内的场景、UI、功能等应该尽量保持一致,不能差太远。

3.提审反馈3.1.1

Guideline 3.1.1 - Business - Payments - In-App Purchase
We noticed that your app offers "loot boxes" or other mechanisms that provide randomized virtual items for purchase, but we were unable to locate any information on the odds of receiving each type of item prior to purchase.

Next Steps

To resolve this issue, you must disclose the odds of receiving each type of item to the user before the user purchases any loot boxes or other randomized virtual items in your app.

对于商城里的礼包,玩家购买前,应该要告知礼包内每个物品的获得几率。

你可能感兴趣的:(iOS)