blob: eddeece3c932b98307b0ac0adbe5651a0d140320 [file] [log] [blame]
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -08001LOCAL_PATH:= $(call my-dir)
2include $(CLEAR_VARS)
3
Wink Saville55434042012-06-14 12:33:43 -07004LOCAL_JAVA_LIBRARIES := bouncycastle telephony-common
Jeff Sharkeyda13ec02012-09-12 18:41:25 -07005LOCAL_STATIC_JAVA_LIBRARIES := guava android-support-v4 jsr305
Jeff Sharkeyab2d8d32011-05-30 16:19:56 -07006
Jean-Baptiste Querucb526ca2010-01-05 16:27:26 -08007LOCAL_MODULE_TAGS := optional
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -08008
9LOCAL_SRC_FILES := $(call all-java-files-under, src)
10
11LOCAL_PACKAGE_NAME := Settings
12LOCAL_CERTIFICATE := platform
13
Ying Wangc845c6d2010-09-30 13:23:20 -070014LOCAL_PROGUARD_FLAG_FILES := proguard.flags
Daisuke Miyakawac81adf52010-08-12 13:04:43 -070015
Koushik Dutta395e8842013-02-28 14:49:24 -080016LOCAL_AAPT_INCLUDE_ALL_RESOURCES := true
17LOCAL_AAPT_FLAGS := --extra-packages com.koushikdutta.superuser:com.koushikdutta.widgets --auto-add-overlay
18
19LOCAL_SRC_FILES += $(call all-java-files-under,../../../external/koush/Superuser/Superuser/src) $(call all-java-files-under,../../../external/koush/Widgets/Widgets/src)
20LOCAL_RESOURCE_DIR := $(LOCAL_PATH)/res $(LOCAL_PATH)/../../../external/koush/Widgets/Widgets/res $(LOCAL_PATH)/../../../external/koush/Superuser/Superuser/res
21
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -080022include $(BUILD_PACKAGE)
23
24# Use the folloing include to make our test apk.
25include $(call all-makefiles-under,$(LOCAL_PATH))