Already I know google denied this dump permission except system applications from version 4.1 and more.
But still I can able to grant this dump permission using following command for debuggable applications.,
command :
adb shell pm grant "com.packageName" android.permission.DUMP
But i cannot do the same for the applications which is downloaded from play store,
command :
adb shell pm grant "com.playStoreApp" android.permission.DUMP
error :
Operation not allowed: java.lang.SecurityException: Package com.playStoreApp has not requested permission android.permission.DUMP
Is there is any hack or work around to grant permission for play store apps?
Thanks in advance.
DUMP
is asignature|system|development
permission, in terms ofprotectionLevel
.development
is what's allowing you to adjust the value of the debuggable app.system
means the app is installed on the system partition, which is possible if you root your device and move the app there. – Danuloff