IT_Kipin
IT_Kipin
  • 发布:2018-01-11 10:02
  • 更新:2021-02-09 10:07
  • 阅读:7502

苹果审核时,由于相机、相册问题被拒绝[2018/01]?提示:not clarify the use of this feature in the permission modal alert

分类:HTML5+

审核被拒信息:
We noticed that your app requests the user’s consent to access their camera and photos but does not clarify the use of this feature in the permission modal alert.

Please see attached screenshots for details.

Next Steps

To resolve this issue, please revise the permission modal alert to specify why the app is requesting access to the user's camera and photos.

===========================================================================

第一次被拒绝时【被拒绝理由同上】,查阅一些资料后,在Manifest.json里添加一些内容(eg:"Set :NSCameraUsageDescription 拍照/摄像/扫描二维码"等),有可能是本人添加有误。等待几日的审核后,还是同样的问题,见上。不知道如何下手,急!

程序局部代码:使用5+,测试没有问题

//相册  
mGallery.addEventListener('tap',function(){  
	plus.gallery.pick(  
		function(path){  
			//...  
	});  
});  
//拍照  
mCamera.addEventListener('tap',function(){  
	plus.camera.getCamera(1).captureImage(  
		function(path){  
			path = "file://"+plus.io.convertLocalFileSystemURL(path);  
			//...  
	});  
});	

如下图,审核失败,苹果给的截图:

2018-01-11 10:02 负责人:无 分享
已邀请:
BoredApe

BoredApe - 有问题就会有答案。

  • 云钦

    首先,你是不是测试过没问题了?


    2018-05-02 21:08

wayhbbeed

wayhbbeed - 110

manifest.json中添加

"plus": {  
    "distribute": {  
      "apple": {  
        "plistcmds": [  
          "Set :NSContactsUsageDescription 说明读取用户通讯录的原因",  
          "Set :NSMicrophoneUsageDescription 说明使用麦克风的原因",  
          "Set :NSPhotoLibraryUsageDescription 说明读取用户相册的原因",  
          "Set :NSCameraUsageDescription 说明使用用户相机的原因",  
          "Set :NSPhotoLibraryAddUsageDescription 说明向用户相册添加图片的原因",  
          "Set :NSLocationAlwaysUsageDescription 说明持续获取用户地理位置的原因",  
          "Set :NSLocationWhenInUseUsageDescription 说明使用用户地理位置的原因"  
        ]  
      }  
    }  
  }

学习了

  • 云钦

    学习什么,你确定添加这样的代码是可以通过的吗


    2018-05-02 21:08

IT_Kipin

IT_Kipin (作者)

【author】被坑不清,已解决。

  • 5***@qq.com

    哥们能说下怎么解决的吗?我 添加了,但是没反应啊


    2018-06-12 16:45

一案

一案 - 开发学习

要描述清楚使用这个权限做什么,

1***@qq.com

1***@qq.com - 666

邮件已经说的很明白了。

我的个人项目已经上线了,我使用的是七牛云存储(阿里也不错的),大概原理也一样吧,你们可以看看,很多功能都有了。

1、Android的(软著没申请下来,暂时上不了架):http://d.firim.top/tc7b?utm_source=fir&utm_medium=qrhttp://d.firim.top/tc7b?utm_source=fir&utm_medium=qr

2、iOS已经上架搜索:猫云—优质贴心的宠物平台

3、顺便也给你们给链接吧,例如iOS做唤起第三方或某个APP时可以使用到 https://apps.apple.com/cn/app/猫云-优质贴心的宠物社交平台/id1474103355

该问题目前已经被锁定, 无法添加新回复