为什么无法将 apk 上传到 google 游戏机?

Why it fail to upload apk to google play console?

当我上传我的 apk 以玩控制台时出现此错误

Upload failed:

You need to use a different version code for your APK or Android App Bundle because you already have one with version code 1.

Your APK or Android App Bundle is using permissions that require a privacy policy: (android.permission.READ_PHONE_STATE, android.permission.GET_ACCOUNTS)

我只想从我的应用中删除 android 权限(READ_PHONE_STATE

您需要在应用程序中更改版本 build.gradle

versionCode 1
versionName "1.0"

改为(例如)

versionCode 2
versionName "1.1"

关于权限 - 您需要为应用设置隐私政策。