+Androlib.getVersion()

This commit is contained in:
Ryszard Wiśniewski 2010-06-02 09:08:54 +02:00
parent ce9c6304af
commit c57b79ff27

View File

@ -326,6 +326,10 @@ public class Androlib {
}
}
public static String getVersion() {
return VERSION;
}
private boolean isModified(File working, File stored) {
if (! stored.exists()) {
return true;
@ -362,4 +366,5 @@ public class Androlib {
new String[]{"resources.arsc", "AndroidManifest.xml", "res"};
private final static String[] APP_RESOURCES_FILENAMES =
new String[]{"AndroidManifest.xml", "res"};
private final static String VERSION = "1.1.1";
}