Questions tagged as 'android-permission'

0
answers

Request permission for biometric authentication

Good afternoon Devs! I'm playing with biometric authentication on Android, but I'm having trouble asking the user to use biometrics authentication, although I have declared in Manifest.xml, I can not make the request via UI so that the user allo...
asked by 05.01.2019 / 16:50
2
answers

What permissions need to be requested at run time?

<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" /> <uses-permission android:name="android.permission.WAKE_LOCK" /> <uses-permission android:name="android.permission.READ_CALENDAR" /> <uses-permission...
asked by 16.10.2018 / 22:24
0
answers

Ionic 3 - permission on android to change "system settings"

I'm creating one on android with ionic 3 + com.hiraqui.ringtone , which is a package to exchange the ringing of the cell phone. It is working, but I am having to give permission manually in the configuration in the "modify system settings" as i...
asked by 12.07.2018 / 04:56
1
answer

FileUriExposedException error on Android N

Hello friends I'm facing the following error:    android.os.FileUriExposedException: file: ///storage/emulated/0/Pictures/1488344088086.jpg exposed beyond app through ClipData.Item.getUri (). The intention is to open the camera, hit a pho...
asked by 01.03.2017 / 06:04
1
answer

FileUriExposedException error on Android N

Hello friends I'm facing the following error:    android.os.FileUriExposedException: file: ///storage/emulated/0/Pictures/1488344088086.jpg exposed beyond app through ClipData.Item.getUri (). The intention is to open the camera, hit a pho...
asked by 01.03.2017 / 06:04
1
answer

FileUriExposedException error on Android N

Hello friends I'm facing the following error:    android.os.FileUriExposedException: file: ///storage/emulated/0/Pictures/1488344088086.jpg exposed beyond app through ClipData.Item.getUri (). The intention is to open the camera, hit a pho...
asked by 01.03.2017 / 06:04
1
answer

FileUriExposedException error on Android N

Hello friends I'm facing the following error:    android.os.FileUriExposedException: file: ///storage/emulated/0/Pictures/1488344088086.jpg exposed beyond app through ClipData.Item.getUri (). The intention is to open the camera, hit a pho...
asked by 01.03.2017 / 06:04
1
answer

"java.lang.SecurityException: Permission Denial" on Android 6 Marshmallow (API 23)

I'm trying to register a broadcastreceiver so I can check out a new sms that might arrive on the device. I'm getting an error only in android marshmallow in the following snippet of code from my fragment: public static final String BROA...
asked by 30.03.2016 / 22:28
1
answer

Connection problem with database [duplicate]

I made a program to try to connect to a hosted database. But an error is occurring:    08-30 10: 42: 13.088 1710-1710 / genus.qrcodefinal E / log_tag: Error in http connection java.lang.SecurityException: Permission denied (missing INTERNET...
asked by 30.08.2016 / 12:50
1
answer

Permission Denial: starting Intent with revoked permission android.permission.CAMERA [duplicate]

Code to call camera public void TirarFoto() { final Random numRandomico = new Random(); String resultado = String.valueOf(numRandomico.nextInt(20)); Intent intent = new Intent("android.media.action.IMAGE_CAPTURE"); File phot...
asked by 07.04.2016 / 19:36