Removed redundant launcher icon reference.

Change-Id: I637736a97744db79e803e1fba4b5c0bd993e4e53
diff --git a/samples/AppRestrictions/AndroidManifest.xml b/samples/AppRestrictions/AndroidManifest.xml
index 7678a45..dd9fc09 100644
--- a/samples/AppRestrictions/AndroidManifest.xml
+++ b/samples/AppRestrictions/AndroidManifest.xml
@@ -24,10 +24,7 @@
     <application android:label="@string/app_name"
                  android:icon="@drawable/ic_launcher">
 
-        <activity android:name="CustomRestrictionsActivity"
-                  android:label="@string/restrictions_activity_label" />
         <activity android:name="MainActivity"
-                  android:icon="@drawable/ic_launcher"
                   android:label="@string/app_name" >
             <intent-filter>
                 <action android:name="android.intent.action.MAIN" />
@@ -35,6 +32,9 @@
             </intent-filter>
         </activity>
 
+        <activity android:name="CustomRestrictionsActivity"
+                  android:label="@string/restrictions_activity_label" />
+
         <receiver android:name="GetRestrictionsReceiver">
             <intent-filter>
                 <action android:name="android.intent.action.GET_RESTRICTION_ENTRIES" />