Error in Windows 10: Error retrieving parent for item

1

I have this problem here:

  

Error: (1) Error retrieving parent for item: No resource found that matches the given name 'android: TextAppearance.Material.Widget.Button.Inverse'.

I think it's because android studio is not yet compatible with windows 10.

    
asked by anonymous 12.02.2016 / 18:13

1 answer

2

as answer in SOen and in this one answer in SOen is not a problem with Windows but rather with the Android SDK , this probably occurs because after the update the default is the api version 23 .

Your SDK build version must match the major version support library.

Since you are using version 23 of the library, you need to compile in version 23 of the Android SDK .

Alternatively, you can continue the build in version 22 of the Android SDK by switching to v22 library.

Click CTRL + SHIFT + ALT + S and go to project structure > and switch to 23.0.0 to 22.0.1

  

Note: when I install Studio I put some screen prints

    
12.02.2016 / 20:03