blob: a70a846875783b58e5a1e82469d1aa9c116dc1ff [file] [log] [blame]
The Android Open Source Project52d4c302009-03-03 19:29:09 -08001LOCAL_PATH:= $(call my-dir)
2include $(CLEAR_VARS)
3
Brett Chabotfe905a82009-06-19 18:32:14 -07004LOCAL_MODULE_TAGS := samples tests
Bo Hu14e8cd52016-05-02 17:16:53 +00005
The Android Open Source Project52d4c302009-03-03 19:29:09 -08006# Only compile source java files in this apk.
Alan Viverettea3d03732018-02-20 16:26:48 -05007LOCAL_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 Project52d4c302009-03-03 19:29:09 -080012
Alan Viverettea3d03732018-02-20 16:26:48 -050013LOCAL_STATIC_ANDROID_LIBRARIES += \
14 android-support-v4
15
16LOCAL_USE_AAPT2 := true
Svetoslav Ganov42c62502013-10-30 12:08:33 -070017
The Android Open Source Project52d4c302009-03-03 19:29:09 -080018LOCAL_PACKAGE_NAME := ApiDemos
19
20LOCAL_SDK_VERSION := current
21
Christopher Ferris0e2da182016-04-19 14:27:18 -070022LOCAL_DEX_PREOPT := false
23
Dan Shib73a7a22017-03-31 23:07:09 -070024LOCAL_COMPATIBILITY_SUITE := device-tests
25
The Android Open Source Project52d4c302009-03-03 19:29:09 -080026include $(BUILD_PACKAGE)
27
28# Use the folloing include to make our test apk.
29include $(call all-makefiles-under,$(LOCAL_PATH))