How to change Android application icon Mark Devid 09-Mar-2015 1549 1 Answers My default icon is ic_launcher which is android icon and i want to change this icon Last updated:3/9/2015 7:22:19 AM
Manoj Pandey 09-Mar-2015 Add your icon then extract your project , open AndroidManifest.xml file and open as .xml file <application android:allowBackup="true" android:icon="@drawable/myicon" android:label="@string/app_name" android:theme="@style/AppTheme" ></application>
Manoj Pandey