Created a permanent SdkManager in UpdaterData (alongside a new AvdManager). Pages can request a reload (for example on install/delete of a local package), and other pages are notified of SDK changes to update their display (local packages, local AVDs, available packages, etc...) Removed references to UpdaterWindow from the pages (moved some actions like installArchives and refreshSources into UpdaterData). Added a new page for the AVDs. Pretty basic for now (only the current AVD display). Clicking refresh on the Local pages causes a reload which triggers a refresh of the listeners pages which properly reloads the AVD page.
21 lines
447 B
Makefile
21 lines
447 B
Makefile
# Copyright 2008 The Android Open Source Project
|
|
#
|
|
LOCAL_PATH := $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES := $(call all-subdir-java-files)
|
|
LOCAL_JAVA_RESOURCE_DIRS := .
|
|
|
|
LOCAL_JAVA_LIBRARIES := \
|
|
sdklib \
|
|
androidprefs \
|
|
swt \
|
|
org.eclipse.jface_3.4.2.M20090107-0800 \
|
|
org.eclipse.equinox.common_3.4.0.v20080421-2006 \
|
|
org.eclipse.core.commands_3.4.0.I20080509-2000
|
|
|
|
LOCAL_MODULE := sdkuilib
|
|
|
|
include $(BUILD_HOST_JAVA_LIBRARY)
|
|
|