ParkSangGwon / TedPermission

Easy check permission library for Android Marshmallow
1.74k stars 239 forks source link

Always showing the denial message #90

Closed kingsammalik closed 6 years ago

kingsammalik commented 6 years ago

I implemented the library, i declined the permissions, then I went to the settings of the app and accepted the permissions, but after restarting app, again denial message is shown.

ParkSangGwon commented 6 years ago

@kingsammalik Can you show me video? If permission granted, denial message can not shown.

ParkSangGwon commented 6 years ago

@kingsammalik I think you mistype permission name. Or your library use same library like this.

<uses-permission
    android:name="android.permission.WRITE_EXTERNAL_STORAGE"
    android:maxSdkVersion="19" />

Then, permission dialog always show denied message. Try this code in manifest.xml

<uses-permission
    android:name="android.permission.WRITE_EXTERNAL_STORAGE"
    tools:node="replace" />
GrishinSergey commented 5 years ago

@ParkSangGwon ,

Or your library use same library like this.

Am I right, if suppose that this message possible, when I used this lib in my module (module1) and in main module (app)?