mirror of
https://github.com/revanced/Apktool.git
synced 2024-12-12 13:57:46 +01:00
added backslash to fix resourceStream for embedded framework
This commit is contained in:
parent
ca623f6617
commit
a8a0f3c459
@ -417,7 +417,7 @@ final public class AndrolibResources {
|
|||||||
InputStream in = null;
|
InputStream in = null;
|
||||||
OutputStream out = null;
|
OutputStream out = null;
|
||||||
try {
|
try {
|
||||||
in = AndrolibResources.class.getResourceAsStream("brut/androlib/android-framework.jar");
|
in = AndrolibResources.class.getResourceAsStream("/brut/androlib/android-framework.jar");
|
||||||
out = new FileOutputStream(apk);
|
out = new FileOutputStream(apk);
|
||||||
IOUtils.copy(in, out);
|
IOUtils.copy(in, out);
|
||||||
return apk;
|
return apk;
|
||||||
|
Loading…
Reference in New Issue
Block a user