Fix a crash on application launch

Only on device with api < 21

Change-Id: I159daa459591c562c0fae58a45108bdb3f34402e
diff --git a/ring-android/app/src/main/res/layout/tv_titleview.xml b/ring-android/app/src/main/res/layout/tv_titleview.xml
index 10ea79e..2d686d9 100644
--- a/ring-android/app/src/main/res/layout/tv_titleview.xml
+++ b/ring-android/app/src/main/res/layout/tv_titleview.xml
@@ -1,6 +1,7 @@
 <?xml version="1.0" encoding="utf-8"?>
 <merge xmlns:android="http://schemas.android.com/apk/res/android"
-    xmlns:tools="http://schemas.android.com/tools">
+    xmlns:tools="http://schemas.android.com/tools"
+    xmlns:app="http://schemas.android.com/apk/res-auto">
 
     <android.support.v17.leanback.widget.SearchOrbView
         android:id="@+id/title_orb"
@@ -53,5 +54,5 @@
         android:layout_gravity="center_vertical|end"
         android:layout_marginEnd="24dp"
         android:padding="6dp"
-        android:src="@drawable/ic_contact_picture" />
+        app:srcCompat="@drawable/ic_contact_picture" />
 </merge>
\ No newline at end of file