blob: 9fb797cf3937c1f9c6c5a172bb3dbb8b59b7df90 [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
12LOCAL_MODULE_TAGS := optional
13
14LOCAL_SRC_FILES := $(call all-java-files-under, src)
15
16include $(BUILD_PACKAGE)
Ethan Yonkerf1179622016-08-25 15:32:21 -050017
18endif