我正在尝试发布我的Android应用程序的新版本.我可以上传APK文件,但在我点击"评论"按钮后,我收到以下错误.
查看摘要错误
在开始发布此版本之前解决这些错误.您无法推出此版本,因为它不允许任何现有用户升级到新添加的APK.
请注意,此应用程序是使用CORDOVA开发的
应用版本详细信息如下图所示.与之前版本和此新版本的唯一区别是Target SDK从24更改为26
有人可以提出一些想法来解决这个问题.谢谢你的帮助
我更新了一个iOS应用程序,它被以下电子邮件拒绝了
缺少Info.plist密钥 - 此应用程序尝试在没有使用说明的情况下访问隐私敏感数据.应用程序的Info.plist必须包含一个NSPhotoLibraryUsageDescription键,其中包含一个字符串值,向用户解释应用程序如何使用此数据.
我尝试将以下xml标记添加到config.xml.
<edit-config file="*-Info.plist" mode="merge" target="NSCameraUsageDescription">
<string>Need camera access to take pictures</string>
</edit-config>
<edit-config file="*-Info.plist" mode="merge" target="NSPhotoLibraryUsageDescription">
<string>Need to photo library access to get pictures from there</string>
</edit-config>
Run Code Online (Sandbox Code Playgroud)
但我不确定我需要哪个标签
我的config.xml文件.
<?xml version='1.0' encoding='utf-8'?>
<widget id="com.aotsinc.christian.iphone.biblequizcompanion" version="3.0.0" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
<name>Bible Quiz Companion</name>
<description>
Bible Quiz Companion is a free app useful for the users to prepare for Jounior Bible Quiz Compatition.
</description>
<author email="dev@cordova.apache.org" href="http://cordova.io">
Alpha Omega Tech Solutions Inc.
</author>
<content src="index.html" />
<access origin="*" />
<allow-intent …Run Code Online (Sandbox Code Playgroud)