2015-01-16 00:04:44 +00:00
|
|
|
LOCAL_PATH := $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
|
|
|
|
LOCAL_SRC_FILES := $(call all-java-files-under, src)
|
|
|
|
|
|
|
|
LOCAL_MODULE_TAGS := optional
|
|
|
|
|
2015-01-19 22:29:43 +00:00
|
|
|
LOCAL_PACKAGE_NAME := CyanogenSetupWizard
|
2015-01-16 00:04:44 +00:00
|
|
|
LOCAL_CERTIFICATE := platform
|
|
|
|
LOCAL_PRIVILEGED_MODULE := true
|
|
|
|
|
|
|
|
LOCAL_PROGUARD_FLAG_FILES := proguard.flags
|
|
|
|
|
|
|
|
LOCAL_STATIC_JAVA_LIBRARIES := \
|
|
|
|
android-support-v4 \
|
|
|
|
android-support-v13 \
|
2015-08-17 07:23:08 +00:00
|
|
|
libphonenumber \
|
2017-02-01 16:22:56 +00:00
|
|
|
org.cyanogenmod.platform.internal \
|
2016-02-10 00:22:15 +00:00
|
|
|
org.cyanogenmod.platform.sdk
|
|
|
|
|
2017-01-23 22:50:47 +00:00
|
|
|
LOCAL_JAVA_LIBRARIES := \
|
|
|
|
telephony-common
|
2015-01-16 00:04:44 +00:00
|
|
|
|
2017-01-23 22:50:47 +00:00
|
|
|
LOCAL_RESOURCE_DIR := $(LOCAL_PATH)/res
|
2015-01-16 00:04:44 +00:00
|
|
|
LOCAL_AAPT_FLAGS := --auto-add-overlay
|
|
|
|
|
2016-04-26 20:43:22 +00:00
|
|
|
include frameworks/opt/setupwizard/library/common.mk
|
|
|
|
|
2015-01-16 00:04:44 +00:00
|
|
|
include $(BUILD_PACKAGE)
|
2017-02-02 14:36:05 +00:00
|
|
|
|
|
|
|
include $(call all-makefiles-under,$(LOCAL_PATH))
|