<>ACCESS_COARSE_LOCATION和ACCESS_COARSE之间有何区别。 是否允许?
The ACCESS_COARSE_LOCATION can be found in the Android developers page, whether the ACCESS_COARSE is not in this list.
I have found many applications that use it e.g. 3D Compass. I run the androguard to inspect the permissions of this application and I found this one inside:
<uses-permission android:name="android.permission.ACCESS_COARSE">
Is it an abbreviation of the ACCESS_COARSE_LOCATION? Why is it not in the official Android page with the permissions here?
Moreover I have see several other permissions not in this list such as: WRITE_OWNER_DATA, READ_OWNER_DATA,...
为什么会发生? 这些许可是不是官方的吗?