• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Apps android app published+ android.permission-group.SYSTEM_TOOLS

Kvakerall

Lurker
Hello.Should I get approve for publishing the application on google play with these permissions? I want to create launcher that needs these permissions. My colleague developer is sure that we will have problems with the permissions on publishing the application. I didn’t find in google market documentation about this issue.
Code:
<permission
   android:name="com.android.launcher.permission.INSTALL_SHORTCUT"
   android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
   android:protectionLevel="dangerous"
   android:label="@string/permlab_install_shortcut"
   android:description="@string/permdesc_install_shortcut" />
<permission
   android:name="com.android.launcher3.permission.READ_SETTINGS"
   android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
   android:protectionLevel="normal"
   android:label="@string/permlab_read_settings"
   android:description="@string/permdesc_read_settings"/>
<permission
   android:name="com.android.launcher3.permission.WRITE_SETTINGS"
   android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
   android:protectionLevel="signatureOrSystem"
   android:label="@string/permlab_write_settings"
   android:description="@string/permdesc_write_settings"/>
<permission
   android:name="com.android.launcher3.permission.RECEIVE_LAUNCH_BROADCASTS"
   android:protectionLevel="signature"
   />
<permission
   android:name="com.android.launcher3.permission.RECEIVE_FIRST_LOAD_BROADCAST"
   android:protectionLevel="signatureOrSystem" />
 
Back
Top Bottom