diff options
author | Tor Norbye <tnorbye@google.com> | 2012-03-14 17:58:11 -0700 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2012-03-14 17:58:11 -0700 |
commit | d93207c968119142f468be601f7f2c19a25ec890 (patch) | |
tree | 8d02e3fc15e6744d0e52cc6a55d4a78ed00834fe | |
parent | fdb2d7d0ef9a2577c349bf43e1d20a5725d993fe (diff) | |
parent | 5a98710c5df8ee84f3946ea8c61464c5ff13a881 (diff) | |
download | sdk-d93207c968119142f468be601f7f2c19a25ec890.zip sdk-d93207c968119142f468be601f7f2c19a25ec890.tar.gz sdk-d93207c968119142f468be601f7f2c19a25ec890.tar.bz2 |
Merge "Update welcome wizard to suggest 2.2 instead of 2.1 as base sdk"
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); |