fix com.android.ant.SetupTask cannot be found (bug #1407)

This commit is contained in:
benfry
2009-12-06 14:16:33 +00:00
parent 97db5c238e
commit b19c8b05b4
2 changed files with 3 additions and 3 deletions
+2 -1
View File
@@ -3,7 +3,8 @@ X not handling key characters correctly (space bar, tab, others)
X http://dev.processing.org/bugs/show_bug.cgi?id=1405
X why aren't mouse drag events coming through?
X http://dev.processing.org/bugs/show_bug.cgi?id=1382
X "taskdef class com.android.ant.SetupTask cannot be found" on Linux
X http://dev.processing.org/bugs/show_bug.cgi?id=1407
P1 this is embarrassing, need to fix ASAP
P2 need to fix before beta release
@@ -16,7 +16,6 @@ public class Build {
static SimpleDateFormat dateFormat = new SimpleDateFormat("yyMMdd.HHmm");
static String basePackage = "processing.android.test";
static String sdkLocation = "/opt/android";
Editor editor;
@@ -467,7 +466,7 @@ public class Build {
void writeLocalProps(File file) {
PrintWriter writer = PApplet.createWriter(file);
writer.println("sdk-location=" + sdkLocation);
writer.println("sdk-location=" + Android.sdkPath);
writer.flush();
writer.close();
}