mirror of
https://github.com/revanced/Apktool.git
synced 2024-11-16 17:39:24 +01:00
Github pr #81 - correctly handle non-URI characters in filename
This commit is contained in:
parent
19a1a260a0
commit
f85dc478b2
1
CHANGES
1
CHANGES
@ -34,6 +34,7 @@ v2.0.0 (TBA)
|
||||
-Fixed (issue #238) - Fixed truncated UTF-16 strings
|
||||
-Fixed (issue #584) - Fixed horrible spacing, aligned for 4 spaces.
|
||||
-Fixed (issue #196) - Fixed style crash due to malformed styles.
|
||||
-Fixed issue with non-URI standard characters in apk name (Thanks rover12421)
|
||||
-Added output to list Apktool version to help debugging.
|
||||
-Updated known bytes for configurations to 38 (from addition of layout direction)
|
||||
-Fixed NPE when handling odex apks even with --no-src specified. (Thanks Rodrigo Chiossi)
|
||||
|
@ -217,9 +217,10 @@ public class Androlib {
|
||||
// options.setIndent(4);
|
||||
Yaml yaml = new Yaml(options);
|
||||
|
||||
FileWriter writer = null;
|
||||
Writer writer = null;
|
||||
try {
|
||||
writer = new FileWriter(new File(mOutDir, "apktool.yml"));
|
||||
writer = new BufferedWriter(new OutputStreamWriter(
|
||||
new FileOutputStream(new File(mOutDir, "apktool.yml")), "UTF-8"));
|
||||
yaml.dump(meta, writer);
|
||||
} catch (IOException ex) {
|
||||
throw new AndrolibException(ex);
|
||||
@ -556,7 +557,7 @@ public class Androlib {
|
||||
|
||||
// create filesystem
|
||||
Path path = Paths.get(outFile.getAbsolutePath());
|
||||
URI apkFileSystem = new URI("jar", path.toUri().toString(), null);
|
||||
URI apkFileSystem = new URI("jar", outFile.toURI().toString(), null);
|
||||
|
||||
// loop through files inside
|
||||
for (Map.Entry<String,String> entry : files.entrySet()) {
|
||||
|
Loading…
Reference in New Issue
Block a user