有人能告诉我这是什么意思吗?
一切都很顺利,我没有改变任何事情,它刚刚发生,这是Binder 565中的代码:
try {
res = onTransact(code, data, reply, flags);
} catch (RemoteException | RuntimeException e) {
if (LOG_RUNTIME_EXCEPTION) {
Log.w(TAG, "Caught a RuntimeException from the binder stub implementation.", e);
}
if ((flags & FLAG_ONEWAY) != 0) {
if (e instanceof RemoteException) {
Log.w(TAG, "Binder call failed.", e);
} else {
Log.w(TAG, "Caught a RuntimeException from the binder stub implementation.", e);
}
} else {
reply.setDataPosition(0);
reply.writeException(e);
}
res = true;
}
Run Code Online (Sandbox Code Playgroud) 您的应用有一个版本号为1的apk,它请求以下权限:android.permission.GET_ACCOUNTS.在APK中使用这些权限的应用程序需要设置隐私策略.
这是我在谷歌播放控制台上得到的错误,我不是要求这个权限!
这些是我的应用程序拥有的唯一权限:
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
Run Code Online (Sandbox Code Playgroud)