REAndroid
REAndroid
@hxhdbhx Released [V1.4.3](https://github.com/REAndroid/APKEditor/releases/tag/V1.4.3)
As documented here [File#toPath()](https://developer.android.com/reference/java/io/File#toPath()) is introduced on API 26. If you can, at [ZipFileInput](https://github.com/REAndroid/ARSCLib/blob/9bc3276391d129eb086f045fbd91479e96aeb23a/src/main/java/com/reandroid/archive/io/ZipFileInput.java#L84): change `fileChannel = FileChannel.open(this.file.toPath(), StandardOpenOption.READ);` to `fileChannel = new FileInputStream(file).getChannel();`
How we reproduce this isssue ?
Fixed on this commit:https://github.com/REAndroid/ARSCLib/commit/b2a4bd60054f7baae0d158ec56b325e032d8ab8f Thank you for reporting !
Thank you ! I am seeing two major works here: 1. Wrapper script I think it is better to consider other platforms also (linux, windows, ...). Maybe it is good...
@AbhiTheModder Sorry I don't know how I didn't see this PR for long. I have no much information about `publish` , normally I do publish releases manually (which is painful...
@AbhiTheModder Thank you! I learned something. As personal hack I place naughty dependencies under `$HOME/.m2` but didn't know `publishToMavenLocal` does the trick. We can't use `implementation("com.reandroid:ARSCLib:+")` on APKEditor bc we...
I am checking [https://central.sonatype.org/publish/publish-portal-snapshots/](https://central.sonatype.org/publish/publish-portal-snapshots/)
Looks like this intended for one specific app. We should not rely on hard coded values like the one you used `"res/drawable/"`, `"state_checked"` ... , btw there is built in...
Null at `removeUnusedNamespaces` could not happen, the base collection is `BlockList` so this doesn't store null items at all. - Kotlin stripped stack trace (most likely), change to java to...