CMParts: activate nfc trigger for system profiles

added missing intent-filter for activity NFCProfile

Change-Id: Ie2aed4998f06731a965a65ed0eca6328ba088245
Signed-off-by: maxbruecken <becker.maxim@gmail.com>
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index b276635..2814e18 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -219,5 +219,18 @@
             </intent-filter>
         </activity-alias>
 
+        <activity android:name=".profiles.NFCProfile">
+            <intent-filter>
+                <action android:name="android.nfc.action.NDEF_DISCOVERED"/>
+                <category android:name="android.intent.category.DEFAULT"/>
+                <data android:mimeType="cm/profile" />
+            </intent-filter>
+        </activity>
+
+        <activity
+            android:name=".profiles.NFCProfileSelect"
+            android:label="@string/profile_select"
+            android:excludeFromRecents="true"/>
+
     </application>
 </manifest>