1

I have the following error after updating Google Play Services:

[2015-12-19 10:58:19 - google-play-services_lib] C:\Tools\Android\sdk_24\extras\google\google_play_services\libproject\google-play-services_lib\res\values-v11\appinvite_styles.xml:5: error: Error retrieving parent for item: No resource found that matches the given name '@android:style/Theme.Holo.Light.DialogWhenLarge.NoActionBar'.
[2015-12-19 10:58:19 - google-play-services_lib] C:\Tools\Android\sdk_24\extras\google\google_play_services\libproject\google-play-services_lib\res\values-v21\appinvite_styles.xml:5: error: Error retrieving parent for item: No resource found that matches the given name '@android:style/Theme.Material.Light.DialogWhenLarge.NoActionBar'.

Styles.xml:

<resources>

<!--
    Base application theme, dependent on API level. This theme is replaced
    by AppBaseTheme from res/values-vXX/styles.xml on newer devices.
-->
<style name="AppBaseTheme" parent="android:Theme.Light">
    <!--
        Theme customizations available in newer API levels can go in
        res/values-vXX/styles.xml, while customizations related to
        backward-compatibility can go here.
    -->
</style>

<!-- Application theme. -->
<style name="AppTheme" parent="AppBaseTheme">
    <!-- All customizations that are NOT specific to a particular API-level can go here. -->
</style>

I had already imported appcompat_v7. Everything was working fine before the google play service import.

curiousMind
  • 2,812
  • 1
  • 17
  • 38
user3560827
  • 632
  • 1
  • 5
  • 22

2 Answers2

0

I had same problem, only that I have found in google code groups was to move to old lib version

0

No more updating anything again!

Community
  • 1
  • 1
user3560827
  • 632
  • 1
  • 5
  • 22
  • not a good choice to permanently avoid updating libraries. This will get fixed and you should keep trying once in a while and see if it has been. Otherwise you will miss out on other important enhancements. – Viral Patel Dec 19 '15 at 10:18