I've gone through the tutorial here and everything works except for my build.gradle. Everything in the 'android' section is is underlined and displays a "Cannot resolve symbol" error message. This is in Android Studio 0.3.1. I've even tried re-installing Android Studio and it still doesn't work.
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:0.6.+'
}
}
apply plugin: 'android'
repositories {
mavenCentral()
}
android {
compileSdkVersion 19
buildToolsVersion "17.0.0"
defaultConfig {
minSdkVersion 7
targetSdkVersion 18
}
}
dependencies {
compile 'com.android.support:appcompat-v7:+'
}