android.permission.GET_ACCOUNTS is not needed if you aren’t using Google Play Games. In 4.16 you can turn off the inclusion of this permission with a checkbox, but the ManifestRequirementsOverride.txt should work for what you are doing. This was really only needed so we could get the authtoken for the reset achievements REST API call. If you don’t have a login request for Google Play Games then I don’t believe there is anywhere else it would be trying to use this. GameActivity.java is where the request was done in 4.15 in onConnected(). Removing the getAccountName and getToken calls here would remove any code they might be detecting; just comment out the lines and pass a blank string for accesstoken.