you have two application tags in your manifest. get rid of this part:
</application>
<application android:label="@string/app_name" android:icon="@drawable/icon">
After that. If you are trying to use your own icon, put your icon in the drawable folder, and replace:
android:icon="@drawable/ic_launcher"
with:
android:icon="@drawable/your_icon"