I would like to add the following permissions to my android manifest:
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
My compileSdkVersion and targetSdkVersion are set to 25. The minSdkVersion is set to 16.
These two permissions are labeled "normal" permissions which are granted automatically. So I don't need to ask the user to approve these permissions. But will this change break the auto-update feature via Google Play for my app when I release it?
Thanks