Files
android_development/samples/BusinessCard/Android.mk
Mathieu Chartier 8f85766087 Disable proguard for BusinessCard app
Otherwise the com.example.android.businesscard.ContactAccessorSdk*
classes get removed by proguard. This cause a class not found
exception during app launch.

Bug: 62554875
Test: launch the app

Change-Id: Ic3d44b50f51be6514fd6af822717e0864a6126db
2017-07-25 14:46:57 -07:00

18 lines
335 B
Makefile

LOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS)
LOCAL_MODULE_TAGS := samples
# Only compile source java files in this apk.
LOCAL_SRC_FILES := $(call all-java-files-under, src)
LOCAL_PACKAGE_NAME := BusinessCard
LOCAL_SDK_VERSION := current
LOCAL_DEX_PREOPT := false
LOCAL_PROGUARD_ENABLED := disabled
include $(BUILD_PACKAGE)