fix android beam icon and add make file
Change-Id: Ib7a77ec6a5c15c06c009bb3a47c1f983f98c553a
diff --git a/samples/AndroidBeamDemo/Android.mk b/samples/AndroidBeamDemo/Android.mk
new file mode 100644
index 0000000..a306305
--- /dev/null
+++ b/samples/AndroidBeamDemo/Android.mk
@@ -0,0 +1,15 @@
+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 := AndroidBeamdemo
+
+LOCAL_SDK_VERSION := current
+
+LOCAL_PROGUARD_FLAG_FILES := proguard.flags
+
+include $(BUILD_PACKAGE)
diff --git a/samples/AndroidBeamDemo/AndroidManifest.xml b/samples/AndroidBeamDemo/AndroidManifest.xml
index e01eb2d..f4c06d9 100644
--- a/samples/AndroidBeamDemo/AndroidManifest.xml
+++ b/samples/AndroidBeamDemo/AndroidManifest.xml
@@ -24,7 +24,7 @@
<uses-permission android:name="android.permission.NFC" />
<uses-sdk android:minSdkVersion="14" />
<uses-feature android:name="android.hardware.nfc" />
- <application android:icon="@drawable/icon" android:label="@string/app_name">
+ <application android:icon="@drawable/ic_launcher" android:label="@string/app_name">
<activity android:name="com.example.android.beam.Beam"
android:label="@string/app_name"
android:launchMode="singleTop">