python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
ACTION_OPEN_DOCUMENT throwing "open file failed: EACCES (Permission denied)" error on android 11 and higher when trying to upload the file to server
Below are the permission im requesting from the user.
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission
android:name="android.per...
Tehleel Mir
Votes: 0
Answers: 0
Android Automator: Is it possible to append file in Download folder?
I've read the Kotlin append to file thread, and my UIAutomator code looks like:
fun appendLog(text: String?) {
val logFile = File("/sdcard/Download/autotest.log")
if (!logFile.exists...
pvd
Votes: 0
Answers: 0
Android Open Assets Image File with Intent and FileProvider Shows Size 0
I place all the files in assets folder and use following functions to open them:
fun Fragment.openAssetsFile(fileName: String) {
val file = getAssetsFile(fileName)
val fileUri = FileProvider.g...
Sam Chen
Votes: 0
Answers: 1
How to make let the user select the location of the file which needs to be saved?
How do I make like this
When the user clicks to save the file an intent will get activated and tell the user where he wants to save that file
Amelia
Votes: 0
Answers: 1