Android 和 iPhone 已弃用 API
我正在制作使用已弃用的 API 的应用程序。我下个月必须在苹果和安卓应用商店提交它。
在这种情况下,iPhone和Android的应用程序商店是否有机会拒绝该应用程序?
I am making application which is using a deprecated API. I have to submit it on Apple and Android App Store next month.
In this case, is there any chances to reject the application from app Store of iPhone and Android.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不要使用已弃用的 API。几乎没有人会在不提供完成同一任务的替代方法的情况下反对某件事。使用文档来发现这些替代方案,并相应地调整您的代码。例如,如果 iOS 5 明天发布,而你的代码突然在这些设备上崩溃,会发生什么情况?你会忙着去修复它。趁你还有时间,立即修复它。
Don't use a deprecated API. Almost nobody deprecates something without providing an alternate means to accomplish the same task. Use the documentation to discover these alternatives, and adjust your code accordingly. What happens if iOS 5 comes out tomorrow, for instance, and all of a sudden your code breaks on those devices. You'll be scrambling to fix it. Fix it now while you have some time.
Android 不应该成为问题,因为他们不会查看您的代码。苹果可能会检查你的代码,如果他们看到它,他们很可能会告诉你你正在使用已弃用的 API,但我认为如果它可以完美地工作,他们不会拒绝它。
Android should not be a problem due to the fact that they won't look at your code. Apple will probably check your code and if they see it, they will most likely tell you that you are using deprecated API, but I don't think they will reject it if it is working flawlessly with it.