I wrote an application that need to be backward compatible from android 2.2. For that I set up android-support-v7-appcompat and wrote on my AndroidManifest.xml file minsdkVersion is 8. My application contains listView, Fragment, Share Button, Action Bar and showWebPage. I used for fragment and actionBar parts support V7 library and import from this library in my application. I thought with myself it will make my app compatible from version 2.2 but when tried to run my app on htc with android version of 2.2 it installed but didn't lunch after that. My import part look like as follow:
import android.support.v7.app.ActionBar;
import android.support.v7.app.ActionBar.LayoutParams;
import android.support.v4.app.NavUtils;
Is there any body have idea why this does happen?