Elliott Hughes | cc79490 | 2016-03-22 21:18:58 -0700 | [diff] [blame] | 1 | # Copyright 2012 Google Inc. All Rights Reserved. |
| 2 | |
Ethan Yonker | f117962 | 2016-08-25 15:32:21 -0500 | [diff] [blame] | 3 | |
| 4 | # Prevent RecoveryLocalizer already defined errors in older trees |
| 5 | ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 24; echo $$?),0) |
| 6 | |
Elliott Hughes | cc79490 | 2016-03-22 21:18:58 -0700 | [diff] [blame] | 7 | LOCAL_PATH := $(call my-dir) |
| 8 | |
| 9 | include $(CLEAR_VARS) |
| 10 | |
| 11 | LOCAL_PACKAGE_NAME := RecoveryLocalizer |
Anton Hansson | 6cc499a | 2018-02-21 14:11:02 +0000 | [diff] [blame] | 12 | LOCAL_SDK_VERSION := current |
Elliott Hughes | cc79490 | 2016-03-22 21:18:58 -0700 | [diff] [blame] | 13 | LOCAL_MODULE_TAGS := optional |
| 14 | |
| 15 | LOCAL_SRC_FILES := $(call all-java-files-under, src) |
| 16 | |
| 17 | include $(BUILD_PACKAGE) |
Ethan Yonker | f117962 | 2016-08-25 15:32:21 -0500 | [diff] [blame] | 18 | |
| 19 | endif |