remove old imports, update changes to reflect fixing of smali debug

This commit is contained in:
Connor Tumbleson 2013-05-03 19:30:30 -05:00
parent a7236053bf
commit 0b37a23874
2 changed files with 1 additions and 3 deletions

View File

@ -6,6 +6,7 @@ v2.0.0 (TBA)
-Fixed (issue #440) - Include aapt binaries within Apktool to have closer control over build.
-Fixed (issue #439) - Correctly handles apk's that have have the general access bit enabled for encryption
-Fixed (issue #63) - Correctly handles apk's that have unknown files outside of the standard aapt allowed resources.
-Fixed (issue #339) - Re-enables debug mode ( -d flag) to fix smali debugging (Thanks Ryszard).
v1.5.3 (TBA)
-Updated to smali/baksmali to v1.4.2

View File

@ -23,17 +23,14 @@ import brut.androlib.res.data.ResTable;
import brut.androlib.res.util.ExtFile;
import brut.androlib.src.SmaliBuilder;
import brut.androlib.src.SmaliDecoder;
import brut.androlib.src.TypeName;
import brut.common.BrutException;
import brut.directory.*;
import brut.util.BrutIO;
import brut.util.OS;
import java.io.*;
import java.net.URI;
import java.nio.charset.Charset;
import java.nio.file.*;
import java.nio.file.Path;
import java.nio.file.attribute.BasicFileAttributes;
import java.util.*;
import java.util.logging.Logger;
import java.util.zip.ZipEntry;