我正在为几天内要完成的最终项目创建应用程序。我当时正在创建一个新活动,但最初却将其命名为我不想使用的名称。我删除了活动文件,并且发生了错误。以下错误是: 找不到资源android:style / Theme.AppCompat.light.noActionBar。 错误:链接引用失败。在构建的“运行任务”部分发生错误。我使用的是Android版本3.1.1。
R的所有实例也不能正常工作;消息提示无法解析符号“ R”。我查看了其他几种解决方案,但不幸的是,它没有解决我的问题。
我已经尝试清理/重建,但是不幸的是,这种情况并不顺利。 我还尝试过使缓存/重新启动无效,以及重新安装。
这是我的build.gradle 应用插件:“ com.android.application”
android {
compileSdkVersion 28
defaultConfig {
applicationId "com.example.henry.henryso"
minSdkVersion 15
targetSdkVersion 28
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
//appcompat
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
//Recycler View
implementation 'com.android.support:recyclerview-v7:28.0.0'
//Toolbar design support
implementation 'com.android.support:design:28.0.0'
}