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;
}
上一篇 Android ViewBinding入门
下一篇 Magento 2.3 安装及开发记录
目录
文章列表
1 Redis 服务器命令
Redis 服务器命令
2
kubectl基本使用
kubectl基本使用
3
Android NDK基础16:JNI注意事项
Android NDK基础16:JNI注意事项
4
Python字典和结构化数据
Python字典和结构化数据
5
Dart中的类与对象
Dart中的类与对象
最新评论
一位WordPress评论者
一位WordPress评论者
2月12日
您好,这是一条评论。若需要审核、编辑或删除评论,请访问仪表盘的评论界面。评论者头像来自 Gravatar。