Reputation: 2838
i just installed AndroidStudio on a MacBook Pro. At first i had i couple of problems with the SDKs but it seems fine right now. However when i create a blank Application via new Project...
it seems to have a couple of errors.
When i try to compile i get the following message:
Gradle: A problem occurred configuring project ':EBVDemo'. Failed to notify project evaluation listener. Could not resolve all dependencies for configuration ':EBVDemo:_DebugCompile'. Could not find any version that matches com.android.support:appcompat-v7:+. Required by: EBVDemoProject:EBVDemo:unspecified
After the first compile attempt the MainActivity was also marked with an error, saying it couldn't resolve ActionBarActivity.
I have an installation on a linux machine without these problems. Could anybody help? Thanks!
Upvotes: 1
Views: 1602
Reputation: 9886
You most probably have appcompat-v7
declared as gradle dependency like this:
dependencies {
compile 'com.android.support:appcompat-v7:18.0.0'
}
If so, make sure you have installed the "Android Support Repository" trough the "Android SDK Manager".
Upvotes: 1