Attempt to fix the build server build: make the common library
not depend on the framework library (for now, at least).
diff --git a/common/Android.mk b/common/Android.mk
index b74eab3..8249a31 100644
--- a/common/Android.mk
+++ b/common/Android.mk
@@ -16,6 +16,8 @@
 
 include $(CLEAR_VARS)
 LOCAL_MODULE := android-common
+LOCAL_NO_STANDARD_LIBRARIES := true
+LOCAL_JAVA_LIBRARIES := core ext
 LOCAL_SRC_FILES := $(call all-java-files-under, src)
 include $(BUILD_STATIC_JAVA_LIBRARY)