android-permissions Questions
2
Solved
I'm using flutter and utilising the RawDatagramSocket in dart in order to send a WOL packet. My code works fine in IOS but in the android emulator I keep getting this error
Unhandled Exception: S...
Froude asked 21/2, 2020 at 16:54
7
I'm trying to get storage permission from the user. Below is the sample (copy-paste) code. But I'm getting error when I'm trying to request the permission.
D/permissions_handler(12775): No permissi...
Malawi asked 18/2, 2022 at 20:53
4
Solved
After building my application with api-level 33, android is adding new permission in the merged manifest
<permission android:name="com.my.package.DYNAMIC_RECEIVER_NOT_EXPORTED_PERMISSION&q...
Louque asked 20/10, 2022 at 21:3
6
When installing the app I programmed, it requires the permission "to use the microphone". I don't however specifically ask for it in the manifest, what I have is the camera permission.
Is that whe...
Tran asked 18/7, 2014 at 5:31
7
I'm getting the following error when trying to submit my app to the Play Store:
Your declaration on Play Console says that your app uses advertising ID. Your manifest file doesn't include the com....
Misuse asked 19/10, 2022 at 15:12
5
Solved
The behaviour changes for Android 13 mention this:
If your app targets Android 13, you must request one or more new
permissions instead of the READ_EXTERNAL_STORAGE and
WRITE_EXTERNAL_STORAGE perm...
Sabinesabino asked 12/7, 2022 at 6:43
5
Solved
I am working on integrating micode's open source compass into an app I am making. I am wondering how I can fix this here permission error when I clearly have it stated in my manifest with the corre...
Coercion asked 3/11, 2013 at 18:58
4
Solved
I work in the IT department of my university and we work on an app that installs the correct setup for the eduroam WiFi (maybe you have heard of it).
However I have a problem running it on my own ...
Englacial asked 29/2, 2016 at 14:14
2
I have an Expo managed react native app. Recently i've updated the Expo SDK version from 48 to 50.
Now when i tried to upload the new android version in play store, i got the below message. It was ...
Funches asked 14/2 at 10:50
8
I am targeting my Android app for Android 13 (API 33)
The WRITE_EXTERNAL_STORAGE permission seems to be working fine below API 33 i.e. Android 12 and less but the runtime permission popup for WRITE...
Sorenson asked 6/9, 2022 at 10:52
8
Solved
I am compile code with following build.gradle file
android {
compileSdkVersion 23
buildToolsVersion "23.0.1"
defaultConfig {
applicationId "com.example"
minSdkVersion 15
targetSdkVersion 2...
Rew asked 2/11, 2015 at 7:35
8
Solved
I can't get the "Allow all the time" prompt for location in SDK 29. I already set these permissions in the manifest:
<uses-permission android:name="com.google.android.providers.gs...
Rhymester asked 20/5, 2020 at 9:12
4
Solved
I implemented method for checkPermissionStatus even though, I got an error message, Unhandled Exception: MissingPluginException(No implementation found for method checkPermissionStatus on channel f...
Macmahon asked 10/2, 2020 at 5:23
3
Solved
After setting targetSdkVersion to 30 (Android 11) I'm getting android.content.pm.PackageManager$NameNotFoundException when doing packageManager.getPackageInfo(packageName, PackageManager.GET_PERMIS...
Khajeh asked 12/6, 2020 at 13:59
4
I have not granted SMS permission to WhatsApp on my device HonorView10 running on EMUI9. Recently I changed the number registered with WhatsApp and it send the verification code to new number (the ...
Butters asked 30/1, 2019 at 5:7
5
I am trying to open an activity from a class that extends Service. I am performing this task when the app is not in foreground/not being used. I can see in the logs that my service class triggered ...
Hydroscope asked 8/1, 2020 at 12:30
38
Solved
I am getting
open failed: EACCES (Permission denied)
on the line OutputStream myOutput = new FileOutputStream(outFileName);
I checked the root, and I tried android.permission.WRITE_EXTERNAL_S...
Lydon asked 13/1, 2012 at 17:3
5
Solved
So in API 31 there are new Bluetooth permissions. I want to turn bluetooth on or off using this:
private void changeBluetoothState(boolean status) {
BluetoothAdapter mBluetoothAdapter = BluetoothA...
Rhodian asked 27/1, 2022 at 17:34
6
Solved
In my app i want to get user permission to read and write data on external storage, i have put permission tag in my manifest as below.
But when installing app or running and where it requires to re...
Unfamiliar asked 17/7, 2018 at 6:26
6
I'm making the use of read and write permission for accessing external storage and for getting the permission, I'm using the permission handler package
AndroidManifest.xml
<uses-permission andro...
Lenora asked 31/1, 2023 at 14:41
5
I am testing my App for action overlay on devices like (Coolpad(Lolipop MRI), Samsung Galaxy grand neo(Kitkat), Redmi(Marshmallow), Lenovo z2 plus(Marshmallow)) to show a dialog over incoming call ...
Wooster asked 25/5, 2017 at 11:25
3
I am attempting to request background location permission for my app, but the locations permission dialog doesn't appear at all if I ask for background location.
If I just ask for coarse location a...
Bobbette asked 19/7, 2022 at 10:6
2
I'm trying to grant permission in my Android app during the Espresso test. In my espresso test I have this rule to try and grant permission:
@Rule
public final GrantPermissionRule mGrantPermissio...
Myopic asked 10/9, 2020 at 21:33
2
Solved
One of my projects has multiple third party libraries and one of those libraries is requesting a permission that I don't have defined in my Manifest. How can I find out which of the libraries is re...
Kerri asked 6/9, 2016 at 15:53
8
Solved
I am writing a test class and I am trying to grant the permissions using the rule GrantPermissionRule:
@Rule
public GrantPermissionRule permissionsRule = GrantPermissionRule.grant(
Manifest.permi...
Emitter asked 23/12, 2018 at 13:22
1 Next >
© 2022 - 2024 — McMap. All rights reserved.