blob: a2cad3a3a85ceb6cce5cdda882803aae1c76c400 [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
Gilles Debunne3fc93182011-01-06 18:21:18 -080013include $(BUILD_PACKAGE)
Romain Guy0dd05fa2010-03-31 15:20:13 -070014
15# Use the following include to make our test apk.
Dianne Hackbornab88ed52011-01-04 17:28:02 -080016#include $(call all-makefiles-under,$(LOCAL_PATH))