58f2132bc3
Fix conflicts and make it build in 5.1, 6.0, 7.1, 8.1, and 9.0 Change-Id: Ida0a64c29ff27d339b7f42a18d820930964ac6e4
20 lines
422 B
Makefile
20 lines
422 B
Makefile
# Copyright 2012 Google Inc. All Rights Reserved.
|
|
|
|
|
|
# Prevent RecoveryLocalizer already defined errors in older trees
|
|
ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 24; echo $$?),0)
|
|
|
|
LOCAL_PATH := $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_PACKAGE_NAME := RecoveryLocalizer
|
|
LOCAL_SDK_VERSION := current
|
|
LOCAL_MODULE_TAGS := optional
|
|
|
|
LOCAL_SRC_FILES := $(call all-java-files-under, src)
|
|
|
|
include $(BUILD_PACKAGE)
|
|
|
|
endif
|