Google Play上架被拒解决

因上传用户手机号触犯隐私政策

被拒描述

APK REQUIRES VALID PRIVACY POLICY​

Your app is uploading users' ​phone number​ information to https://api.appblog.cn without posting a privacy policy in both the designated field in the Play Developer Console and from within the Play distributed app itself.

APK UPLOAD USER’S DATA PRIOR TO USER INTERACTION

Your app is uploading users’ ​phone number​ information to https://api.appblog.cn prior to user interaction (i.e. login).

解决方案

注释如下获取手机号的使用及禁止将手机号塞入HTTP Header上报

public static String getPhoneNum(Context context) {
    String result = "";
    try {
        if (ActivityCompat.checkSelfPermission(context, Manifest.permission.READ_SMS) != PackageManager.PERMISSION_GRANTED &&
                ActivityCompat.checkSelfPermission(context, Manifest.permission.READ_PHONE_NUMBERS) != PackageManager.PERMISSION_GRANTED &&
                ActivityCompat.checkSelfPermission(context, Manifest.permission.READ_PHONE_STATE) != PackageManager.PERMISSION_GRANTED) {
            return "";
        }
        TelephonyManager telephonyManager = (TelephonyManager) (context.getSystemService(Context.TELEPHONY_SERVICE));
        result = telephonyManager.getLine1Number();
        if (result == null)
            result = "";
    } catch (Exception e) {
        NLog.e(Constants.TAG, Log.getStackTraceString(e));
    }
    return result;
}

版权声明:
作者:Joe.Ye
链接:https://www.appblog.cn/index.php/2023/03/25/google-play-reject-solution/
来源:APP全栈技术分享
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
打赏
海报
Google Play上架被拒解决
因上传用户手机号触犯隐私政策 被拒描述 APK REQUIRES VALID PRIVACY POLICY​ Your app is uploading users' ​phone number​ information to https://api.app……
<<上一篇
下一篇>>
文章目录
关闭
目 录