aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Bestas <mikeioannina@cyanogenmod.org>2016-05-21 00:57:05 +0300
committerMichael Bestas <mikeioannina@cyanogenmod.org>2016-06-01 21:03:41 +0300
commit1112f87089fbbe2e7dc3fdec7cb4b773c6f3eea3 (patch)
treef4501965b906fc7a3e5c78f8673448e2d1551919
parenta8df9c85c1ef260d2e2c1d26c7761e1ecaf4c0d1 (diff)
downloadandroid_external_ahbottomnavigation-1112f87089fbbe2e7dc3fdec7cb4b773c6f3eea3.tar.gz
android_external_ahbottomnavigation-1112f87089fbbe2e7dc3fdec7cb4b773c6f3eea3.tar.bz2
android_external_ahbottomnavigation-1112f87089fbbe2e7dc3fdec7cb4b773c6f3eea3.zip
Add Android.mk
Change-Id: Id4c259e58e7db9e9273483df34597251d8d62172
-rw-r--r--ahbottomnavigation/src/main/Android.mk38
1 files changed, 38 insertions, 0 deletions
diff --git a/ahbottomnavigation/src/main/Android.mk b/ahbottomnavigation/src/main/Android.mk
new file mode 100644
index 0000000..56003de
--- /dev/null
+++ b/ahbottomnavigation/src/main/Android.mk
@@ -0,0 +1,38 @@
+# Copyright (C) 2016 CyanogenMod Project
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+LOCAL_PATH := $(call my-dir)
+
+# Here is the final static library that apps can link against.
+# The R class is automatically excluded from the generated library.
+# Applications that use this library must specify LOCAL_RESOURCE_DIR
+# in their makefiles to include the resources in their package.
+include $(CLEAR_VARS)
+LOCAL_MODULE := ahbottomnavigation
+LOCAL_SRC_FILES := $(call all-java-files-under,java)
+LOCAL_STATIC_JAVA_LIBRARIES = android-support-v4
+LOCAL_STATIC_JAVA_LIBRARIES += android-support-v7-appcompat
+LOCAL_STATIC_JAVA_LIBRARIES += android-support-design
+
+LOCAL_AAPT_FLAGS := \
+ --auto-add-overlay \
+ --extra-packages android.support.v7.appcompat \
+ --extra-packages android.support.design
+
+LOCAL_RESOURCE_DIR += \
+ $(addprefix $(LOCAL_PATH)/, res) \
+ frameworks/support/design/res \
+ frameworks/support/v7/appcompat/res \
+
+include $(BUILD_STATIC_JAVA_LIBRARY)