Android SecurityException: no permission to uri - android

I try from my app to query content provider of an other app (not my app).
The provider in that app is defined with:
android:readPermission="android.permission.BIND_APPWIDGET"
android:grantUriPermissions="true"
From my app i added the user permission android.permission.BIND_APPWIDGET to manifest file but i get:
java.lang.SecurityException: Permission Denial: opening provider com.* from ProcessRecord{427afe60 29052:*/u0a72} (pid=29052, uid=10072) requires android.permission.BIND_APPWIDGET or com.*.ACCESS
Does anyone have and idea?

You can't give your application BIND_APPWIDGET since that is a signature|system permission. See the Android core resources manifest for more information.

Related

Huawei phone write to external storage fails even that the permission added to the manifest

Hey I have developed an app that saves a picture to external storage using MediaStore library.
MediaStore.Images.Media.insertImage(
contentResolver,
takenImage,
imgName,
"Image Saved"
)
The function work on Samsung A30 and Xiomi devices however when testing on Huawei p90 it fails(not saving the image) and throwing permission denial exception:
java.lang.SecurityException: Permission Denial: writing com.android.providers.media.MediaProvider uri content://media/external/images/media from pid=15830, uid=10438 requires android.permission.WRITE_EXTERNAL_STORAGE, or grantUriPermission()
However I do have the android.permission.WRITE_EXTERNAL_STORAGE permission in the manifest, when the is running I am prompted with a permission request (dealing with the runtime permission via CameraKit function and package)
Anything I missed?
Please check in manifest for the desired permission.
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>

SecurityException when using uses-permissions

I have two apps : App1 and App2
In App1 specified permission like this
<uses-permission android:name="com.commonname.providers.app2.READ_LOGIN_TOKEN" />
In App2 specified peromission like this
<uses-permission android:name="com.commonname.providers.app1.READ_LOGIN_TOKEN" />
I have installed applications in order: first App1 then App2.
When I run App1 I received SecurityException, like this:
Writing exception to parcel
java.lang.SecurityException: Permission Denial: reading
com.commonname.providers.App1 uri
content://com.commonname.providers.app1/logintoken from pid=5550,
uid=10919 requires com.commonname.providers.app1.READ_LOGIN_TOKEN,
or grantUriPermission()
at android.content.ContentProvider.enforceReadPermissionInner(ContentProvider.java:608)
at android.content.ContentProvider$Transport.enforceReadPermission(ContentProvider.java:483)
at android.content.ContentProvider$Transport.query(ContentProvider.java:212)
at android.content.ContentProviderNative.onTransact(ContentProviderNative.java:112)
at android.os.Binder.execTransact(Binder.java:565)
Is exists way to request permissions again, while running application?
Or other way to grand access to this permission if application was installed first.
I have read this article https://github.com/commonsguy/cwac-security/blob/master/PERMS.md#android-50-behavior, and known depending from install order, but maybe exists some way.
It depens on your SDK version, if it higher than 23 you must request permissions runtime.

Cann't play/preview the audio content which filename include emotion icon

============
Download a audio content(MP3) from website See you again.mp3 and rename to
See you again.mp3
See you again.mp3 Can play/preview mp3 with GooglePlay BUT
See you again.mp3 can NOT be played/previewed with GooglePlay,a Permission Denial was thrown like below:
java.lang.SecurityException: Permission Denial: reading com.android.providers.media.MediaProvider uri content://media/external/audio/media/40 from pid=1532, uid=1000 requires android.permission.READ_EXTERNAL_STORAGE, or grantUriPermission()
Could anyone help me to answer my doubts --> Why Android throw the Permission Denial
PS: LG Nexus still exist this issue

Cordova security exception android

I'm developing a mobile app with cordova/phonegap and I've installed OAuth plugin. When I try to use this plugin(that try to open a popup to authenticate on twitter) my console show me:
E/DatabaseUtils(2355): java.lang.SecurityException: Permission Denial: get/set setting for user asks to run as user -2 but is calling from user 0; this requires android.permission.INTERACT_ACROSS_USERS_FULL
How can I resolve it?
Try adding the permission mentioned in the error message into your AndroidManifest.xml file.
<uses-permission android:name="android.permission.INTERACT_ACROSS_USERS_FULL" />
Edit: If you have trouble adding this permission please refer to the following:
Permission Denial: this requires android.permission.INTERACT_ACROSS_USERS_FULL

Android - Workaround the ACCESS_CONTENT_PROVIDERS_EXTERNALLY permission?

I'm building an application which gives this exception because i call some internal methods
Permission Denial: Do not have permission in call getContentProviderExternal() from pid=2520, uid=10047 requires android.permission.ACCESS_CONTENT_PROVIDERS_EXTERNALLY
java.lang.SecurityException: Permission Denial: Do not have permission in call getContentProviderExternal() from pid=2520, uid=10047 requires android.permission.ACCESS_CONTENT_PROVIDERS_EXTERNALLY
I did some search and i knew that android OS gives this permission only for the shell users,
I wonder if there exists any workaround this ..
Is there anything that would allow me to trick android and makes my application looks like a shell user?
Note: I tried to add the permission in the manifest file but obviously it didn't work.

Categories

Resources