Search code examples
zipunzipandroid-10.0zipoutputstreamzipinputstream

Android 10 (Android Q): How to unzip file due to External Storage Changes (without android:requestLegacyExternalStorage)


Can the Android 10(Android Q) download the zip file and extract the zip file?

I really have no idea. How do I unzip the file without using Environment.getExternalStorageDirectory()

without adding this android:requestLegacyExternalStorage="true" in AndroidManifest.xml

Please HELP.


Solution

  • Solved the problem by changing Environment.getExternalStorageDirectory() to getExternalFilesDir(null).getAbsolutePath()