1f715fd998b172c4e8658715a26a41c69144380beChris Wren#
2f715fd998b172c4e8658715a26a41c69144380beChris Wren# Copyright (C) 2014 The Android Open Source Project
3f715fd998b172c4e8658715a26a41c69144380beChris Wren#
4f715fd998b172c4e8658715a26a41c69144380beChris Wren# Licensed under the Apache License, Version 2.0 (the "License");
5f715fd998b172c4e8658715a26a41c69144380beChris Wren# you may not use this file except in compliance with the License.
6f715fd998b172c4e8658715a26a41c69144380beChris Wren# You may obtain a copy of the License at
7f715fd998b172c4e8658715a26a41c69144380beChris Wren#
8f715fd998b172c4e8658715a26a41c69144380beChris Wren#      http://www.apache.org/licenses/LICENSE-2.0
9f715fd998b172c4e8658715a26a41c69144380beChris Wren#
10f715fd998b172c4e8658715a26a41c69144380beChris Wren# Unless required by applicable law or agreed to in writing, software
11f715fd998b172c4e8658715a26a41c69144380beChris Wren# distributed under the License is distributed on an "AS IS" BASIS,
12f715fd998b172c4e8658715a26a41c69144380beChris Wren# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13f715fd998b172c4e8658715a26a41c69144380beChris Wren# See the License for the specific language governing permissions and
14f715fd998b172c4e8658715a26a41c69144380beChris Wren# limitations under the License.
15f715fd998b172c4e8658715a26a41c69144380beChris Wren#
16f715fd998b172c4e8658715a26a41c69144380beChris Wren
17f715fd998b172c4e8658715a26a41c69144380beChris WrenLOCAL_PATH:= $(call my-dir)
18f715fd998b172c4e8658715a26a41c69144380beChris Wren
19f715fd998b172c4e8658715a26a41c69144380beChris Wreninclude $(CLEAR_VARS)
20f715fd998b172c4e8658715a26a41c69144380beChris Wren
21f715fd998b172c4e8658715a26a41c69144380beChris WrenLOCAL_MODULE_TAGS := optional
22f715fd998b172c4e8658715a26a41c69144380beChris Wren
23f715fd998b172c4e8658715a26a41c69144380beChris WrenLOCAL_AAPT_FLAGS += -c mdpi,hdpi,xhdpi
24f715fd998b172c4e8658715a26a41c69144380beChris Wren
25f715fd998b172c4e8658715a26a41c69144380beChris WrenLOCAL_SRC_FILES := $(call all-java-files-under, src)
26f715fd998b172c4e8658715a26a41c69144380beChris Wren
27f715fd998b172c4e8658715a26a41c69144380beChris WrenLOCAL_STATIC_JAVA_LIBRARIES := android-support-v4
28f715fd998b172c4e8658715a26a41c69144380beChris Wren
29f715fd998b172c4e8658715a26a41c69144380beChris WrenLOCAL_PACKAGE_NAME := NotificationListenerSample
30f715fd998b172c4e8658715a26a41c69144380beChris WrenLOCAL_CERTIFICATE := platform
31f715fd998b172c4e8658715a26a41c69144380beChris Wreninclude $(BUILD_PACKAGE)
32f715fd998b172c4e8658715a26a41c69144380beChris Wren
33f715fd998b172c4e8658715a26a41c69144380beChris Wreninclude $(call all-makefiles-under,$(LOCAL_PATH))
34