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 |
Bo Hu | 14e8cd5 | 2016-05-02 17:16:53 +0000 | [diff] [blame] | 5 | |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 6 | # Only compile source java files in this apk. |
Alan Viverette | a3d0373 | 2018-02-20 16:26:48 -0500 | [diff] [blame] | 7 | LOCAL_SRC_FILES := \ |
| 8 | $(call all-java-files-under, src) \ |
| 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 \ |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 12 | |
Alan Viverette | a3d0373 | 2018-02-20 16:26:48 -0500 | [diff] [blame] | 13 | LOCAL_STATIC_ANDROID_LIBRARIES += \ |
| 14 | android-support-v4 |
| 15 | |
| 16 | LOCAL_USE_AAPT2 := true |
Svetoslav Ganov | 42c6250 | 2013-10-30 12:08:33 -0700 | [diff] [blame] | 17 | |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 18 | LOCAL_PACKAGE_NAME := ApiDemos |
| 19 | |
| 20 | LOCAL_SDK_VERSION := current |
| 21 | |
Christopher Ferris | 0e2da18 | 2016-04-19 14:27:18 -0700 | [diff] [blame] | 22 | LOCAL_DEX_PREOPT := false |
| 23 | |
Dan Shi | b73a7a2 | 2017-03-31 23:07:09 -0700 | [diff] [blame] | 24 | LOCAL_COMPATIBILITY_SUITE := device-tests |
| 25 | |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 26 | include $(BUILD_PACKAGE) |
| 27 | |
| 28 | # Use the folloing include to make our test apk. |
| 29 | include $(call all-makefiles-under,$(LOCAL_PATH)) |