将Android工作室升级到2.1.2
后,当我将旧项目导入其中时,我的代码会出现警告。警告是:
Instance field name doesn't match regex '[a-z]+'
Local variable name doesn't match regex '[a-z]+'
Instance field access is not qualified with 'this'
这是截图。
如果我将同一个类文件复制到另一个新项目,则没有警告。只有旧项目会显示这些警告。 这是我的build.gradle文件:
apply plugin: 'com.android.application'
android {
compileSdkVersion 24
buildToolsVersion "24.0.1"
defaultConfig {
applicationId "com.example.app"
minSdkVersion 10
targetSdkVersion 24
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:24.1.0'
compile 'com.android.support:design:24.1.0'
androidTestCompile 'junit:junit:4.12'
}
我尝试了File menu -> Invalidate caches / Restart
,但它没有帮助。
我想解决问题,而不是忽略警告。
任何帮助深表感谢。谢谢。