4,114 questions
0
votes
0
answers
110
views
cordova in-app picture viewer and android READ_MEDIA_IMAGES permissions issue
My cordova app displays photos that users can click on and then pinch expand/zoom the photo and/or download the image. I am using the plugin: https://github.com/YaroslavG/photoviewer. I just ...
1
vote
1
answer
62
views
How do I securely share my Uri from SD card with other apps?
After reading and playing around with this for a few days with little success, I've decided to ask for help.
I'm working on a file-management app spanning APIs 24 through 36 (as of writing).
I'm using ...
0
votes
1
answer
126
views
How does Truecaller show an incoming call popup without overlay permission in Android?
I’m building an Android app that displays a custom UI when there’s an incoming call.
Currently, I handle it like this:
If overlay permission is granted → show a Service with overlay (...
1
vote
2
answers
140
views
Google Play Console permission declaration errors despite correct manifest - QUERY_ALL_PACKAGES and AD_ID issues
Problem Summary
I'm experiencing contradictory permission declaration errors in Google Play Console that don't match my actual app manifest. Despite multiple clean builds and manifest verification, ...
0
votes
2
answers
57
views
How to handle application last most Activity/Fragment recreation after user revoked permissions through settings
I'm trying to understand whether it's a design problem or a technical one.
I've one Activity and two Fragments. Activity layout is just androidx.fragment.app.FragmentContainerView where a fragment is ...
0
votes
0
answers
47
views
Differentiating limited access vs full access when requesting ACCESS_MEDIA_LOCATION permission
I need to retrieve EXIF data from photos present in gallery for Android 13+ devices. On these devices, EXIF data is stripped from images unless ACCESS_MEDIA_LOCATION is requested at runtime. This ...
0
votes
2
answers
68
views
What permission do I need for my app so it can send the players score to my server?
I have a small game/app, that you need to guess a randomly generated number. Once you get it, my app will POST your name (from localStorage) and your score to my server.
It is currently working on ...
0
votes
1
answer
48
views
Android Kotlin - permission launcher launches too quickly when there is no surface view yet
I can't start my scanner from registerForActivityResult. It seems to me that the launcher launches too quickly when there is no surface view yet.
I have tried setting permissions by hand remove ...
0
votes
1
answer
68
views
Android onRequestPermissionResult not called
My small, tutorial-for-me app was working on my physical test device (Samsung Galaxy S7 running Android 8.0.0) - it requested permissions for location and responded accordingly (I either show a ...
0
votes
0
answers
71
views
How to check state of "Lock Screen" and "Show Content on lock screen" settings from Notification permission
I need a way to detect the state of Lock Screen and Show content on Lock Screen settings shown in the following screen shot.
I can find answers detected for Xiaomi/Redmi Devices or how to show widgets/...
1
vote
0
answers
152
views
Health Connect permission screen not showing on Pixel 9a (Android 15)
I am developing an Android app using Health Connect (version 1.1.0-rc01) on a Pixel 9a running Android 15.
I'm trying to request Health Connect permissions (e.g., android.permission.health.READ_STEPS) ...
0
votes
1
answer
91
views
save files to the default download folder react native
I'm downloading a file and I want Android to save it to the downloads folder by default. But when the download finishes, nothing is done. I'm on Android 16 API 33.
This is my function
const ...
0
votes
0
answers
81
views
Samsung Permission popup disabled - React native
I’m currently integrating Samsung Health into my React Native app using the Samsung Health Data SDK. I’ve already completed the following steps:
-- Registered as a Samsung Health partner.
-- Verified ...
1
vote
1
answer
62
views
USB permissions windows apeared sometimes after granting permissions
I wrote the apk which use FTDI usb to serial converter.
I use Samsung Galaxy Tab Active 4 Pro 5G and Docking station https://www.gamberjohnson.com/product/7160-1418-50/
This docking staion expands 2 ...
0
votes
1
answer
51
views
Flutter. Scheduled Android notifications when device is locked
I use flutter_local_notifications for scheduled Android notifications:
tz.initializeTimeZones();
final String currentTimeZone = await FlutterTimezone.getLocalTimezone();
tz.setLocalLocation(tz....
0
votes
1
answer
126
views
MAUI - AndroidManifest uses-permission no request
I have a .NET MAUI Android Application and I am debugging on a physical device with Android 14.0 - API 34
Now in my AndroidManifest.xml I have the line <uses-permission android:name="android....
0
votes
0
answers
58
views
Why is my Android app not auto-launching during device setup with MDM policy?
I'm developing an Android app that should be automatically installed and launched as part of the device setup process using a Mobile Device Management (MDM) solution. The app's package is configured ...
2
votes
0
answers
267
views
SMS Permissions Remain Disabled on Some Devices – Android SDK 35
I have an Android application that communicates with a specific device via SMS. The app requires the following permissions to send and receive SMS messages:
<uses-permission android:name="...
0
votes
0
answers
80
views
app crashes using android.permission.FOREGROUND_SERVICE_LOCATION
I'm trying to build a flutter app to get the location every 2 seconds even when the app is minimised. I'm using the flutter_background_service: ^5.0.4 for the app to check location when minimised.
...
2
votes
1
answer
475
views
Why does my WorkManager Work never have Internet connection when running in the background?
I am using WorkManager in my Android application to do some background work.
This work is using the Internet for HTTP POST requests to an API.
With the app running in the foreground everything works ...
0
votes
0
answers
48
views
How can I check on that the application continues the code after a function has been strictly executed on Kotlin?
`I want my Android application to check for an internet connection on the first launch and prevent any further execution (such as API requests) if the internet is not available. If the internet is ...
3
votes
0
answers
1k
views
READ_MEDIA_IMAGE and READ_MEDIA_VIDEO remove but error message when build
Following Google Play's statements on image access permissions, I remove READ_MEDIA_IMAGE and READ_MEDIA_VIDEO in AndroidManifest but I always have the error message
Google Api Error: Invalid request -...
0
votes
2
answers
234
views
Camera and File Access Permissions Weren't Granted
I’m facing an issue with my React Native app where camera and file access permissions are not being granted on Android 14, even though I’ve allowed the permissions in the settings. The permissions are ...
0
votes
0
answers
44
views
Null pointer exception on camera click to capture image
I have an android app which is capturing the location. I have tried to check the permissions required on android 15 and also the context passed. Help me trace and fix the issue as it is occuring only ...
2
votes
1
answer
230
views
net::ERR_ACCESS_DENIED despite setting all relevant WebView flags
I am trying to load an HTML file that I generate upon app's start, saved to:
/data/data/com.me.myapp/files/autogen.html
using:
public class FileUtils {
public static void saveToInternalFile(...