The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 1 | LOCAL_PATH:= $(call my-dir) |
| 2 | include $(CLEAR_VARS) |
| 3 | |
Brett Chabot | fe905a8 | 2009-06-19 18:32:14 -0700 | [diff] [blame] | 4 | LOCAL_MODULE_TAGS := samples tests |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 5 | |
| 6 | # Only compile source java files in this apk. |
| 7 | LOCAL_SRC_FILES := $(call all-java-files-under, src) |
| 8 | LOCAL_SRC_FILES += \ |
| 9 | src/com/example/android/apis/app/IRemoteService.aidl \ |
| 10 | src/com/example/android/apis/app/IRemoteServiceCallback.aidl \ |
| 11 | src/com/example/android/apis/app/ISecondary.aidl \ |
| 12 | |
Ye Wen | 3ce7beb | 2014-07-07 17:38:09 -0700 | [diff] [blame] | 13 | LOCAL_JAVA_LIBRARIES := telephony-common |
Wink Saville | e8617bc | 2012-06-13 06:49:37 -0700 | [diff] [blame] | 14 | |
Svetoslav Ganov | 42c6250 | 2013-10-30 12:08:33 -0700 | [diff] [blame] | 15 | LOCAL_STATIC_JAVA_LIBRARIES = android-support-v4 |
| 16 | |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 17 | LOCAL_PACKAGE_NAME := ApiDemos |
| 18 | |
| 19 | LOCAL_SDK_VERSION := current |
| 20 | |
| 21 | include $(BUILD_PACKAGE) |
| 22 | |
| 23 | # Use the folloing include to make our test apk. |
| 24 | include $(call all-makefiles-under,$(LOCAL_PATH)) |