blob: fd53c596c62829f07acaa10685024c62fb62ffec [file] [log] [blame]
Elliott Hughescc794902016-03-22 21:18:58 -07001# Copyright 2012 Google Inc. All Rights Reserved.
2
Ethan Yonkerf1179622016-08-25 15:32:21 -05003
4# Prevent RecoveryLocalizer already defined errors in older trees
5ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 24; echo $$?),0)
6
Elliott Hughescc794902016-03-22 21:18:58 -07007LOCAL_PATH := $(call my-dir)
8
9include $(CLEAR_VARS)
10
11LOCAL_PACKAGE_NAME := RecoveryLocalizer
Anton Hansson6cc499a2018-02-21 14:11:02 +000012LOCAL_SDK_VERSION := current
Elliott Hughescc794902016-03-22 21:18:58 -070013LOCAL_MODULE_TAGS := optional
14
15LOCAL_SRC_FILES := $(call all-java-files-under, src)
16
17include $(BUILD_PACKAGE)
Ethan Yonkerf1179622016-08-25 15:32:21 -050018
19endif