0

After creating a new android project, Eclipse automatically creates a "appcompat_v7" project without any files under /src. But it shows error in styles.xml on the following line, which is line 18 in the styles.xml.

style name="Widget.MediaRouter.MediaRouteButton" parent="Widget.AppCompat.ActionButton"

I have no idea how or why Eclipse is creating this project.

I am new to Android developing. please help me to solve this error.

Arunkumar G
  • 205
  • 1
  • 2
  • 9

1 Answers1

0

go to style.xml and inside resources put

<style name="AppBaseTheme" parent="android:Theme.Light">

    -->
</style>

<style name="AppTheme" parent="AppBaseTheme">

</style>
Kastriot Dreshaj
  • 1,121
  • 6
  • 16