0

I am trying to run an Android Studio project, but when I do, it fails:

enter image description here

This post suggests that I should reinstall the android support repository, and this guide suggests that I should look in the Extras folder in the SDK Manager window, but there is no such folder:

enter image description here

This post says I should use the Launch Standalone SDK Manager button, but that also does not exist for me.

I'd appreciate help, thank you.

Community
  • 1
  • 1
Phoenix
  • 1,553
  • 2
  • 13
  • 29

1 Answers1

0

Think you are missing the support libraries you need. They are not part of android sdk.

build.gradle:

compile 'com.android.support:design:25.2.0'
compile 'com.android.support:recyclerview-v7:25.2.0'
compile 'com.android.support:appcompat-v7:25.2.0'

just a copy paste, try out which one you really need at the end. Also the versions should be as your exception tells you

Henning Luther
  • 2,067
  • 15
  • 22