I am trying to use action bar in android 2.2, but i cant find build.gradle in my project? Can anybody help me please?
Link is here:http://developer.android.com/tools/support-library/setup.html
Make sure you have downloaded the Android Support Repository using the SDK Manager.
**Open the build.gradle file for your application.**
Add the support library feature project identifier to the dependencies section. For example, to include the appcompat project add compile "com.android.support:appcompat-v7:18.0.+" to the dependencies section, as shown in the following example:
dependencies {
...
compile "com.android.support:appcompat-v7:18.0.+"
}