aboutsummaryrefslogtreecommitdiffstats
path: root/eclipse
diff options
context:
space:
mode:
authorTor Norbye <tnorbye@google.com>2012-03-14 17:05:48 -0700
committerTor Norbye <tnorbye@google.com>2012-03-14 17:05:48 -0700
commit5a98710c5df8ee84f3946ea8c61464c5ff13a881 (patch)
tree28f819b8b116f7c44446323f9794400b75c9af2e /eclipse
parent02d654b5bebc2ea00bffbedfbe650cc2a59fc9d9 (diff)
downloadsdk-5a98710c5df8ee84f3946ea8c61464c5ff13a881.zip
sdk-5a98710c5df8ee84f3946ea8c61464c5ff13a881.tar.gz
sdk-5a98710c5df8ee84f3946ea8c61464c5ff13a881.tar.bz2
Update welcome wizard to suggest 2.2 instead of 2.1 as base sdk
Change-Id: I48867b91174dcc6b061a13dfaa10538756a80957
Diffstat (limited to 'eclipse')
-rw-r--r--eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/welcome/WelcomeWizard.java2
-rw-r--r--eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/welcome/WelcomeWizardPage.java2
2 files changed, 2 insertions, 2 deletions
diff --git a/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/welcome/WelcomeWizard.java b/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/welcome/WelcomeWizard.java
index 44a9170..5115385 100644
--- a/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/welcome/WelcomeWizard.java
+++ b/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/welcome/WelcomeWizard.java
@@ -112,7 +112,7 @@ public class WelcomeWizard extends Wizard {
try {
Set<Integer> apiLevels = new HashSet<Integer>();
if (installCommon) {
- apiLevels.add(7);
+ apiLevels.add(8);
}
if (installLatest) {
apiLevels.add(AdtUpdateDialog.USE_MAX_REMOTE_API_LEVEL);
diff --git a/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/welcome/WelcomeWizardPage.java b/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/welcome/WelcomeWizardPage.java
index 4e580fe..de27011 100644
--- a/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/welcome/WelcomeWizardPage.java
+++ b/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/welcome/WelcomeWizardPage.java
@@ -99,7 +99,7 @@ public class WelcomeWizardPage extends WizardPage implements ModifyListener, Sel
mInstallCommonCheckbox = new Button(container, SWT.CHECK);
mInstallCommonCheckbox.setLayoutData(new GridData(SWT.LEFT, SWT.CENTER, false, false, 3,
1));
- mInstallCommonCheckbox.setText("Install Android 2.1, a version which is supported by ~97% phones and tablets");
+ mInstallCommonCheckbox.setText("Install Android 2.2, a version which is supported by ~93% phones and tablets");
mInstallCommonCheckbox.addSelectionListener(this);
new Label(container, SWT.NONE);