我已从早期的0.6.x版本升级到Android Studio Beta(0.8.0)版本。升级之后,所有项目(之前都在工作)会抛出错误“无法解析符号”的一切 - 字符串,活动,文件,视图 - 一切。我做了一个清洁和重建;
显然我在升级中遗漏了一些东西;那可能是什么?
我的settings.gradle是:
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:0.12.+'
}
}
apply plugin: 'android'
android {
compileSdkVersion 19
buildToolsVersion "19.1.0"
defaultConfig {
applicationId "com.grabdata.gdlea.apps"
minSdkVersion 9
targetSdkVersion 19
versionCode 1
versionName "1.0"
}
buildTypes {
release {
runProguard false
proguardFiles getDefaultProguardFile('proguard-android.txt'),
'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
// You must install or update the Support Repository through the SDK manager to use
this dependency.
// You must install or update the Support Repository through the SDK manager to use
this dependency.
compile 'com.android.support:appcompat-v7:19.+'
}
答案 0 :(得分:0)
陷入同样的问题。我清理并重建了项目,一切都恢复了。