Hai Zhang
Hai Zhang
Connecting a USB OTG device may or may not be different from inserting an SD card when it comes to detecting the newly added storage. The app does have logic...
Well, I'm a bit surprised that none of them worked even after reboot, which means the system didn't report them as storage volumes, or they weren't considered mounted. I can...
There are existing app managers available that can do a lot of things. The primary reason I'm still considering adding it is that it can allow users to conveniently visit/backup/restore...
Also worth considering pulling out APK of install apps, especially [APKS support](https://developer.android.com/studio/command-line/bundletool) for split APKS.
The log is incomplete and the pontentially relevant part says: ``` 07-11 17:47:49.345 W/System.err(14715): at me.zhanghai.android.files.provider.root.m$n.p(:1) 07-11 17:47:49.345 W/System.err(14715): at me.zhanghai.android.files.provider.root.m.z(:1) 07-11 17:47:49.345 W/System.err(14715): at me.zhanghai.android.files.provider.root.m.b() 07-11 17:47:49.345 W/System.err(14715): at...
This time the unsuccessful log didn't contain any reason for the error, just that `PackageInstaller` found the file invalid/non-existent.
That's strange, this app allows you to open ZIP files directly. See the attached video for how I was able to compress a file and extract it in 3 ways....
@Lokawn I tested on a Pixel 4 XL running Android 11 and didn't have this issue. Could you elaborate what you are observing, e.g. what differences are you seeing on...
I can't reproduce this in any way and the bug doesn't make sense to me (despite I'm sure it happened to you) because the logic for showing those menus are...
Current the right way to do this with [Commons Compress](https://commons.apache.org/proper/commons-compress/#Documentation) is to include [zstd-jni](https://github.com/luben/zstd-jni). However, ([zstd-jni-1.5.2-3.aar](https://repo1.maven.org/maven2/com/github/luben/zstd-jni/1.5.2-3/zstd-jni-1.5.2-3.aar)) adds an entire megabyte to the APK, and not everyone uses ZSTD, so I...