remove includeantruntime warning

This commit is contained in:
benfry
2011-11-05 14:22:45 +00:00
parent 97016f9316
commit 39366f991e
2 changed files with 11 additions and 7 deletions

View File

@@ -444,8 +444,11 @@ class AndroidBuild extends JavaBuild {
private void writeProjectProps(final File file) {
final PrintWriter writer = PApplet.createWriter(file);
//writer.println("target=Google Inc.:Google APIs:" + sdkVersion);
writer.println("target=" + sdkTarget);
writer.println();
// http://stackoverflow.com/questions/4821043/includeantruntime-was-not-set-for-android-ant-script
writer.println("# Suppress the javac task warnings about \"includeAntRuntime\"");
writer.println("build.sysclasspath=last");
writer.flush();
writer.close();
}