<uses-permission android:name="android.permission.WRITE_SETTINGS"
I have declared above line in my manifest ,and i ask for permission on activity start but unlike other permissions,after restarting my app,it again asks for permission.When i check if permission has been granted or not,i get result that says not granted for only this permission but when i checked the same thing with other permissions ,they are granted after the user has done so.
ActivityCompat.requestPermissions(SplashScreen.this,PERMISSIONS, 1);
i check with : EasyPermissions.hasPermissions(this,PERMISSIONS)