changing to API 7 as the base requirement

This commit is contained in:
benfry
2010-06-25 15:39:18 +00:00
parent 89bc93af0f
commit b1a6e9b62e
2 changed files with 4 additions and 4 deletions
@@ -19,14 +19,14 @@ public class AVD {
/** Name of this avd. */
public final String name;
/** "android-6" or "Google Inc.:Google APIs:6" */
/** "android-7" or "Google Inc.:Google APIs:7" */
public final String target;
/**
* Default virtual device used by Processing that uses
* the Android 2.0.1 API set.
* the Android 2.1 API set.
*/
public static final AVD ECLAIR = new AVD("Processing-Android-2.0.1",
public static final AVD ECLAIR = new AVD("Processing-Android-2.1",
"Google Inc.:Google APIs:" +
Build.sdkVersion);
@@ -27,7 +27,7 @@ class Build {
File buildFile;
static final String sdkVersion = "6";
static final String sdkVersion = "7";
public Build(final Editor editor, final AndroidSDK sdk) {
this.editor = editor;