SDK Updter: change window title to match ADT

Also change the name displayed by the "android" wrapping scripts.

Change-Id: I663e1dcadfef7caf2e42138e39b1237f08091c77
This commit is contained in:
Raphael
2009-09-02 15:01:18 -07:00
parent a43c57a870
commit a7bb36d181
3 changed files with 6 additions and 2 deletions

View File

@@ -105,6 +105,10 @@ else
exit 1 exit 1
fi fi
if [ -z "$1" ]; then
echo "Starting Android SDK and AVD Manager"
fi
# need to use "java.ext.dirs" because "-jar" causes classpath to be ignored # need to use "java.ext.dirs" because "-jar" causes classpath to be ignored
# might need more memory, e.g. -Xmx128M # might need more memory, e.g. -Xmx128M
exec "$java_cmd" -Xmx256M $os_opts $java_debug -Djava.ext.dirs="$frameworkdir" -Dcom.android.sdkmanager.toolsdir="$progdir" -jar "$jarpath" "$@" exec "$java_cmd" -Xmx256M $os_opts $java_debug -Djava.ext.dirs="$frameworkdir" -Dcom.android.sdkmanager.toolsdir="$progdir" -jar "$jarpath" "$@"

View File

@@ -33,7 +33,7 @@ rem Set SWT.Jar path based on current architecture (x86 or x86_64)
for /f %%a in ('java -jar lib\archquery.jar') do set swt_path=lib\%%a for /f %%a in ('java -jar lib\archquery.jar') do set swt_path=lib\%%a
if not "%1"=="" goto EndTempCopy if not "%1"=="" goto EndTempCopy
echo Starting Android SDK Updater echo Starting Android SDK and AVD Manager
rem We're now going to create a temp dir to hold all the Jar files needed rem We're now going to create a temp dir to hold all the Jar files needed
rem to run the android tool, copy them in the temp dir and finally execute rem to run the android tool, copy them in the temp dir and finally execute

View File

@@ -121,7 +121,7 @@ public class UpdaterWindowImpl {
fl.marginHeight = fl.marginWidth = 5; fl.marginHeight = fl.marginWidth = 5;
mAndroidSdkUpdater.setMinimumSize(new Point(200, 50)); mAndroidSdkUpdater.setMinimumSize(new Point(200, 50));
mAndroidSdkUpdater.setSize(745, 433); mAndroidSdkUpdater.setSize(745, 433);
mAndroidSdkUpdater.setText("Android SDK"); mAndroidSdkUpdater.setText("Android SDK and AVD Manager");
mSashForm = new SashForm(mAndroidSdkUpdater, SWT.NONE); mSashForm = new SashForm(mAndroidSdkUpdater, SWT.NONE);