Merge changes from topic "core_current"

* changes:
  Import platform SDK from build 4574500
  fetch core.current.stubs.jar to core.jar
diff --git a/Android.mk b/Android.mk
index 64d631e..7cd8edb 100644
--- a/Android.mk
+++ b/Android.mk
@@ -44,7 +44,7 @@
 
 endef
 
-$(foreach s,$(filter-out test_current,$(TARGET_AVAILABLE_SDK_VERSIONS)),\
+$(foreach s,$(filter-out test_current core_current,$(TARGET_AVAILABLE_SDK_VERSIONS)),\
   $(eval $(call declare_sdk_prebuilts,$(s))))
 
 include $(call all-makefiles-under,$(LOCAL_PATH))
diff --git a/current/core.jar b/current/core.jar
new file mode 100644
index 0000000..a10f100
--- /dev/null
+++ b/current/core.jar
Binary files differ
diff --git a/update_current.py b/update_current.py
index ba3e081..0f86319 100755
--- a/update_current.py
+++ b/update_current.py
@@ -264,6 +264,12 @@
 
         # Unclear if this is actually necessary.
         extract_to(zipFile, paths, 'framework.aidl', system_path)
+
+    artifact_path = fetch_artifact(target, build_id, 'core.current.stubs.jar')
+    if not artifact_path:
+        return False
+
+    mv(artifact_path, path(current_path, 'core.jar'))
     return True