Record the permissions used in the learning process here for later search:
<!--read internal memory card data permissions--
<uses-permission android:name= "Android.permission.READ_EXTERNAL_STORAGE"/>
<!--for writing cached data to an extended memory card--
<uses-permission android:name= "Android.permission.WRITE_EXTERNAL_STORAGE"/>
<!--for network positioning--
<uses-permission android:name= "Android.permission.ACCESS_COARSE_LOCATION"/>
<!--for access to GPS location--
<uses-permission android:name= "Android.permission.ACCESS_FINE_LOCATION"/>
<!--used to obtain carrier information to support interfaces that provide operator information--
<uses-permission android:name= "Android.permission.ACCESS_NETWORK_STATE"/>
<!--used to access WiFi network information, WiFi information is used for network location--
<uses-permission android:name= "Android.permission.ACCESS_WIFI_STATE"/>
<!--get access to WiFi, WiFi information is used for network location--
<uses-permission android:name= "Android.permission.CHANGE_WIFI_STATE"/>
<!--for network access, can be network-<uses-permission android:name= "Android.permission.INTERNET"/>
<!--used to read the current status of the phone--<uses-permission android:name= "Android.permission.READ_PHONE_STATE"/>
<!--used to request a call to A-gps module--<uses-permission android:name= "Android.permission.ACCESS_LOCATION_EXTRA_COMMANDS"/ >
<!--used for obtaining Bluetooth information for indoor positioning--<uses-permission android:name= "Android.permission.BLUETOOTH"/>
<uses-permission android:name= "Android.permission.BLUETOOTH_ADMIN"/>
Android Permissions Record