blob: 6c46e1979e35fc2d00af7896d0083c6aef748af6 [file] [log] [blame]
Romain Guy0dd05fa2010-03-31 15:20:13 -07001LOCAL_PATH:= $(call my-dir)
2include $(CLEAR_VARS)
3
4LOCAL_MODULE_TAGS := samples
5
6# Only compile source java files in this apk.
7LOCAL_SRC_FILES := $(call all-java-files-under, src)
8
Gilles Debunne3fc93182011-01-06 18:21:18 -08009LOCAL_PACKAGE_NAME := xmladapters
Romain Guy0dd05fa2010-03-31 15:20:13 -070010
11LOCAL_PROGUARD_ENABLED := disabled
12
Narayan Kamath56d7f392014-12-12 12:53:26 +000013LOCAL_SDK_VERSION := 8
Brett Chabote2e7ec92011-07-14 19:06:31 -070014
Gilles Debunne3fc93182011-01-06 18:21:18 -080015include $(BUILD_PACKAGE)
Romain Guy0dd05fa2010-03-31 15:20:13 -070016
17# Use the following include to make our test apk.
Dianne Hackbornab88ed52011-01-04 17:28:02 -080018#include $(call all-makefiles-under,$(LOCAL_PATH))