Enabling platform/sdk prebuilt for PDK builds to break dependency on
framework/support

Bug: 66964928
Test: Built successfully
Change-Id: I340b82cc3185d0e48dbbfa726c653fbc6ef96b7d
diff --git a/Android.mk b/Android.mk
index fd17ee6..c42446b 100644
--- a/Android.mk
+++ b/Android.mk
@@ -13,6 +13,10 @@
 # limitations under the License.
 
 LOCAL_PATH:= $(call my-dir)
+
+# Disable the frameworks support for PDK builds instead
+# use prebuilts/sdk/current/
+ifneq ($(TARGET_BUILD_PDK),true)
 # Don't include in unbundled build.
 ifeq ($(TARGET_BUILD_APPS),)
 
@@ -70,3 +74,4 @@
 SUPPORT_CURRENT_SDK_VERSION :=
 
 endif
+endif