diff options
author | android-build-prod (mdb) <android-build-team-robot@google.com> | 2018-04-26 02:26:33 +0200 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2018-04-26 02:26:33 +0200 |
commit | cf277abb8f554e78f63208c968051c90bc8b3a6c (patch) | |
tree | 67faa232f6086a2256d0fbb0ebf4ea473f031420 /updater_sample/Android.mk | |
parent | Merge "sample_updater: add non-streaming demo" am: 4816fc1c46 (diff) | |
parent | Merge "Rename the dir for SystemUpdaterSample." (diff) | |
download | android_bootable_recovery-cf277abb8f554e78f63208c968051c90bc8b3a6c.tar android_bootable_recovery-cf277abb8f554e78f63208c968051c90bc8b3a6c.tar.gz android_bootable_recovery-cf277abb8f554e78f63208c968051c90bc8b3a6c.tar.bz2 android_bootable_recovery-cf277abb8f554e78f63208c968051c90bc8b3a6c.tar.lz android_bootable_recovery-cf277abb8f554e78f63208c968051c90bc8b3a6c.tar.xz android_bootable_recovery-cf277abb8f554e78f63208c968051c90bc8b3a6c.tar.zst android_bootable_recovery-cf277abb8f554e78f63208c968051c90bc8b3a6c.zip |
Diffstat (limited to 'updater_sample/Android.mk')
-rw-r--r-- | updater_sample/Android.mk | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/updater_sample/Android.mk b/updater_sample/Android.mk new file mode 100644 index 000000000..2786de44f --- /dev/null +++ b/updater_sample/Android.mk @@ -0,0 +1,32 @@ +# +# Copyright (C) 2018 The Android Open Source 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) +include $(CLEAR_VARS) + +LOCAL_PACKAGE_NAME := SystemUpdaterSample +LOCAL_SDK_VERSION := system_current +LOCAL_MODULE_TAGS := samples + +# TODO: enable proguard and use proguard.flags file +LOCAL_PROGUARD_ENABLED := disabled + +LOCAL_SRC_FILES := $(call all-java-files-under, src) + +include $(BUILD_PACKAGE) + +# Use the following include to make our test apk. +include $(call all-makefiles-under,$(LOCAL_PATH)) |