I have an Android application used to transfer the .png image from asset folder of Android application to my local server. I need to get the path of image in asset folder, pls r
Assets and resources are accessible using file:///android_asset and file:///android_res.
Uri path = Uri.parse("file:///android_asset/raw/sample/logout.png"); String newPath = path.toString();