I read: "To specify an icon and label, you define the attributes android:icon and android:label in the <application> element of the manifest." Not sure exactly how to implement this.
This is what I have now:
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".App"
android:label="@string/app_name">
I have icons in:
assets/hdpi/ic_launcer_name_72.png
assets/ldpi/ic_launcer_name_36.png
assets/mdpi/ic_launcer_name_48.png
So how do I "define the attributes"?
This is what I have now:
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".App"
android:label="@string/app_name">
I have icons in:
assets/hdpi/ic_launcer_name_72.png
assets/ldpi/ic_launcer_name_36.png
assets/mdpi/ic_launcer_name_48.png
So how do I "define the attributes"?