Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android 6 (23) - no permission requested

I stucked on new permission model in the Android 6.

I defined following permissions in the manifest:

<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.VIBRATE"/>
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/>
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>

<application...

But if i launched the app in the emulator and opened the app detail i saw the following :

enter image description here

It says that app does not require any permission.

How can i solve it please?

Many thanks for any advice.

like image 630
redrom Avatar asked Sep 20 '25 01:09

redrom


1 Answers

It says that app does not require any permission.

That is correct. That portion of your app's page lists dangerous permissions. None of yours have a protectionLevel of dangerous.

How can i solve it please?

There is nothing wrong, and so there is nothing to solve.

like image 176
CommonsWare Avatar answered Sep 22 '25 18:09

CommonsWare