output smali filename instead of filestream

This commit is contained in:
Connor Tumbleson 2013-01-05 08:50:48 -06:00
parent 941289ae39
commit e9196c28b8
2 changed files with 5 additions and 2 deletions

View File

@ -1,4 +1,7 @@
v1.5.1 PR3 (TBA)
v1.5.2 (TBA)
-Fixed (issue #299) - output smali filename errors to screen during rebuild instead of filestream
v1.5.1 PR3 (Released December 23 - 2012) Codename: Pre Release 3
-Reverted "Prevents removal of <uses-sdk> on decompile, but then throws warning on rebuild (issue #366)"
-Added -a / -aapt command on rebuild to specify location of aapt
-Updated internal framework

View File

@ -43,7 +43,7 @@ public class DexFileBuilder {
if (! SmaliMod.assembleSmaliFile(
smaliStream, name, mDexFile, false, false, false)) {
throw new AndrolibException(
"Could not smali file: " + smaliStream);
"Could not smali file: " + name);
}
} catch (IOException ex) {
throw new AndrolibException(ex);