The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 1 | LOCAL_PATH:= $(call my-dir) |
| 2 | include $(CLEAR_VARS) |
| 3 | |
Wink Saville | 5543404 | 2012-06-14 12:33:43 -0700 | [diff] [blame] | 4 | LOCAL_JAVA_LIBRARIES := bouncycastle telephony-common |
Jeff Sharkey | da13ec0 | 2012-09-12 18:41:25 -0700 | [diff] [blame] | 5 | LOCAL_STATIC_JAVA_LIBRARIES := guava android-support-v4 jsr305 |
Jeff Sharkey | ab2d8d3 | 2011-05-30 16:19:56 -0700 | [diff] [blame] | 6 | |
Jean-Baptiste Queru | cb526ca | 2010-01-05 16:27:26 -0800 | [diff] [blame] | 7 | LOCAL_MODULE_TAGS := optional |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 8 | |
| 9 | LOCAL_SRC_FILES := $(call all-java-files-under, src) |
| 10 | |
| 11 | LOCAL_PACKAGE_NAME := Settings |
| 12 | LOCAL_CERTIFICATE := platform |
| 13 | |
Ying Wang | c845c6d | 2010-09-30 13:23:20 -0700 | [diff] [blame] | 14 | LOCAL_PROGUARD_FLAG_FILES := proguard.flags |
Daisuke Miyakawa | c81adf5 | 2010-08-12 13:04:43 -0700 | [diff] [blame] | 15 | |
Koushik Dutta | 395e884 | 2013-02-28 14:49:24 -0800 | [diff] [blame^] | 16 | LOCAL_AAPT_INCLUDE_ALL_RESOURCES := true |
| 17 | LOCAL_AAPT_FLAGS := --extra-packages com.koushikdutta.superuser:com.koushikdutta.widgets --auto-add-overlay |
| 18 | |
| 19 | LOCAL_SRC_FILES += $(call all-java-files-under,../../../external/koush/Superuser/Superuser/src) $(call all-java-files-under,../../../external/koush/Widgets/Widgets/src) |
| 20 | LOCAL_RESOURCE_DIR := $(LOCAL_PATH)/res $(LOCAL_PATH)/../../../external/koush/Widgets/Widgets/res $(LOCAL_PATH)/../../../external/koush/Superuser/Superuser/res |
| 21 | |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 22 | include $(BUILD_PACKAGE) |
| 23 | |
| 24 | # Use the folloing include to make our test apk. |
| 25 | include $(call all-makefiles-under,$(LOCAL_PATH)) |