1,492 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
1
vote
0
answers
80
views
Unable to Access SD card in android application(unity) at runtime
I have built android app in unity which contains the scenes, in my app there are 3 scenes one of them are in apk build and other 2 are addressables(packed as .BUNDLE ) and i stored them on sd card. In ...
0
votes
0
answers
89
views
Write to external removable SD Card since API 30
How to access and write files (PDF, DB, CSV) on an external SD Card since API 30.
I checked :
Storage Access Framework (SAF) => Didn't found any SD Card sample
Without MANAGE_EXTERNAL_STORAGE =>...
0
votes
1
answer
126
views
How to trash an image which on SD card via MediaStore#createTrashRequest?
12/17 Update:
This is a bug, and it seems a fixed version will come out soon.
And also a workaround provide here for older version, see: https://issuetracker.google.com/issues/350540990#comment7
I'm ...
0
votes
0
answers
121
views
How to write a ByteArray to an Excel file and saving it in external storage?
I want to write ByteArray data which is coming from Retrofit API (ResponseBody as return type from API) into Excel file and store into external memory of android SD Card.
try {
var path = mContext?...
0
votes
0
answers
339
views
How to show the list of all file names in the SD card directory of Android device?
In my Android native Java project, I have a class, where I wanted to show the log for all the SD card directories and file names inside those folders. My Android OS version:
Android 14 (API level 34)
...
0
votes
1
answer
681
views
How to access external storage(sdcard/usb) in an android device in a qt qml based application?
I am creating a video player application targeting android 13(API 33). I am using Qt Creator 9.0.1 and qt version is 6.4.0. With the Video component in qml, playing videos from internal storage is ...
1
vote
1
answer
830
views
Sharing a file between an Android app (with native component) and system services
Android has been more restrictive with files, while it is very clear how to share files across apps... How would I share a file between a system service like surfaceflinger/audioflinger and an app? ...
0
votes
0
answers
103
views
ESP32 Crash when I add 1 at a variable which has no link with the crash line
I'm doing a pixelstip with esp32 Display TTGO. I did one which work perfectly with 144 leds. Today, I'm doing the same thing with 644 leds.
I used the same code and just modify the NUMPIXELS (Global) ...
0
votes
0
answers
62
views
Trying to import file from SD card in xamarin
New to Xamarin and Android, currently working my way through a program that needs to be updated to import a file from an SD Card. See below block of code.
string path = Android.OS.Environment....
0
votes
0
answers
60
views
Error saving images to the external storage (sdcard)
I'm trying to compress and store some photos in the external memory of an Android device using this method:
private String saveToExternalStorage(Bitmap bitmapImage, String nameImage, int compression) {...
user avatar
user19643881
0
votes
1
answer
364
views
Is it possible to remove Android Gallery access to the SD Card?
I want to remove the Gallery access to the images stored in the SD Card in order they don't appear visible showup.
I look in the Gallery settings, but didn't fine anything.
Note: there are a lot of ...
user avatar
anon
-2
votes
1
answer
30k
views
Android: allow browser to read file:///sdcard
On Android versions higher than v4.4 (since storage framework was introduced) opening the local memory filesystem in a web browser via file:///sdcard does not show all the files and folders.
For ...
0
votes
0
answers
488
views
How do I get the path to the usb flash drive or access it?
During the development of the application, we encountered a problem. We connect a USB flash drive to the device via OTG cable. We request access rights from the user, but in the end we get nothing.
As ...
0
votes
0
answers
71
views
How to handle existing external storage files on app upgrade in Android?
An android app is getting updated after a long time. It was using external storage permission (READ_EXTERNAL_STORAGE, WRITE_EXTERNAL_STORAGE) to save the user selected files and images in a directory ...
0
votes
0
answers
2k
views
Can not create any file on removable microSD card on android
I'm developing an app that can download some media files to the user selected folder (User selects folder using the SAF), targeting android 11+. It can download and create files on primary external ...