Reduce permission usage and describe own permission

This commit is contained in:
mar-v-in 2015-01-30 21:40:42 +01:00
parent 8a2c05cf4a
commit 7c4b1de391
3 changed files with 6 additions and 2 deletions

View file

@ -25,13 +25,15 @@
android:targetSdkVersion="21" />
<permission
android:permissionGroup="android.permission-group.LOCATION"
android:label="@string/perm_force_coarse_location_label"
android:description="@string/perm_force_coarse_location_desc"
android:name="org.microg.permission.FORCE_COARSE_LOCATION"
android:protectionLevel="dangerous" />
<uses-permission android:name="android.permission.INSTALL_LOCATION_PROVIDER" />
<uses-permission android:name="android.permission.ACCESS_COARSE_UPDATES" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
<uses-permission android:name="org.microg.permission.FORCE_COARSE_LOCATION" />

@ -1 +1 @@
Subproject commit 282ce270850a7eb2f9fb8064f72f19bfc3e1be4d
Subproject commit f221f343fa91ad76ef05f21f30543fcc08e93645

View file

@ -32,4 +32,6 @@
</string>
<string name="pref_location_backends">location_backends</string>
<string name="pref_geocoder_backends">geocoder_backends</string>
<string name="perm_force_coarse_location_label">enforce approximate location</string>
<string name="perm_force_coarse_location_desc">Force the network-based location provider to report a certain location</string>
</resources>