blob: e12ce5739efe252961d035c262ac21ea16d11beb [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
Brett Chabote2e7ec92011-07-14 19:06:31 -070013LOCAL_SDK_VERSION := current
14
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))