this is my code
fun createDirDownload(): File {
val fileDir = activity?.getExternalFilesDir(Environment.DIRECTORY_DOWNLOADS)!!
if (!fileDir.exists()) {
fileDir.mkdirs()
}
return fileDir
}
The firebase crashlytics shows this method: getExternalFilesDir(Environment.DIRECTORY_DOWNLOADS) caused ANR. But I don't know why and how to solve the problem.
How to solve this issue?