mirror of
https://github.com/processing/processing4.git
synced 2026-06-16 04:26:26 +02:00
fix com.android.ant.SetupTask cannot be found (bug #1407)
This commit is contained in:
+2
-1
@@ -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();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user