Yeah, I figured it out. After getting really frustrated, and getting nowhere, I flashed my 9.0 version, and looked at the icon, then went back to my 10.0 source, and compared. It wasnt a missing image at all! It was a fault I did in AndroidManifest.xml. I was simply missing this line:
Code:
android:icon="@drawable/steel_icon">
Which would have gone in the manifest like this:
Code:
<application android:label="@string/app_name"
android:icon="@drawable/steel_icon">
I cant believe it was that simple. lol But I figured I would post it for those that were also curious.