allsafe icon indicating copy to clipboard operation
allsafe copied to clipboard

Environment.DIRECTORY_DOWNLOADS

Open cTFk1ller opened this issue 1 year ago • 1 comments

Hello Developer, 

I found an issue: the returned path of this line code shouldn't be true. File file = new File(Environment.DIRECTORY_DOWNLOADS + "/allsafe_updater.apk"); should return this path  /Download/allsafe_updater.apk and the download directory does not exist and can't even be created.

It should be written this way: File file = new File("/sdcard/" + Environment.DIRECTORY_DOWNLOADS + "/allsafe_updater.apk");

Tested ..

cTFk1ller avatar May 20 '23 15:05 cTFk1ller