- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
打开一个我两个月没碰过的项目进行轻微更新,更新 Android Studio 后我无法编译代码而不会出现以下错误。
过去两个小时我一直在用谷歌搜索这个问题,但无法解决。我已经尝试了其他类似线程中的几乎所有内容,包括将我的 compileSdkVersion 更改为 28。
完整错误信息:
FAILURE: Build failed with an exception.
* What went wrong:
Execution failed for task ':app:processDebugResources'.
> Android resource linking failed
Output: C:\Users\nicoq\AndroidStudioProjects\CurrencyConverter\app\build\intermediates\incremental\mergeDebugResources\merged.dir\values-v28\values-v28.xml:7: error: resource android:attr/dialogCornerRadius not found.
C:\Users\nicoq\AndroidStudioProjects\CurrencyConverter\app\build\intermediates\incremental\mergeDebugResources\merged.dir\values-v28\values-v28.xml:11: error: resource android:attr/dialogCornerRadius not found.
C:\Users\nicoq\AndroidStudioProjects\CurrencyConverter\app\build\intermediates\incremental\mergeDebugResources\merged.dir\values\values.xml:605: error: resource android:attr/fontVariationSettings not found.
C:\Users\nicoq\AndroidStudioProjects\CurrencyConverter\app\build\intermediates\incremental\mergeDebugResources\merged.dir\values\values.xml:605: error: resource android:attr/ttcIndex not found.
error: failed linking references.
Command: C:\Users\nicoq\.gradle\caches\transforms-1\files-1.1\aapt2-3.2.1-4818971-windows.jar\79758b877cdc4acd10a4d36cead9740a\aapt2-3.2.1-4818971-windows\aapt2.exe link -I\
C:\Users\nicoq\AppData\Local\Android\Sdk\platforms\android-27\android.jar\
--manifest\
C:\Users\nicoq\AndroidStudioProjects\CurrencyConverter\app\build\intermediates\merged_manifests\debug\processDebugManifest\merged\AndroidManifest.xml\
-o\
C:\Users\nicoq\AndroidStudioProjects\CurrencyConverter\app\build\intermediates\processed_res\debug\processDebugResources\out\resources-debug.ap_\
-R\
@C:\Users\nicoq\AndroidStudioProjects\CurrencyConverter\app\build\intermediates\incremental\processDebugResources\resources-list-for-resources-debug.ap_.txt\
--auto-add-overlay\
--java\
C:\Users\nicoq\AndroidStudioProjects\CurrencyConverter\app\build\generated\not_namespaced_r_class_sources\debug\processDebugResources\r\
--custom-package\
com.nicoqueijo.android.currencyconverter\
-0\
apk\
--output-text-symbols\
C:\Users\nicoq\AndroidStudioProjects\CurrencyConverter\app\build\intermediates\symbols\debug\R.txt\
--no-version-vectors
Daemon: AAPT2 aapt2-3.2.1-4818971-windows Daemon #0
Output: C:\Users\nicoq\.gradle\caches\transforms-1\files-1.1\appcompat-1.0.0.aar\35842d61ee1e0b491406c4ed516cc97e\res\values-v28\values-v28.xml:9:5-12:13: AAPT: error: resource android:attr/dialogCornerRadius not found.
C:\Users\nicoq\AndroidStudioProjects\CurrencyConverter\app\build\intermediates\incremental\mergeDebugResources\merged.dir\values-v28\values-v28.xml:11: AAPT: error: resource android:attr/dialogCornerRadius not found.
C:\Users\nicoq\.gradle\caches\transforms-1\files-1.1\core-1.0.0.aar\61e0e551f80e7289ee3f340454bf1394\res\values\values.xml:89:5-125:25: AAPT: error: resource android:attr/fontVariationSettings not found.
C:\Users\nicoq\.gradle\caches\transforms-1\files-1.1\core-1.0.0.aar\61e0e551f80e7289ee3f340454bf1394\res\values\values.xml:89:5-125:25: AAPT: error: resource android:attr/ttcIndex not found.
error: failed linking references.
Command: C:\Users\nicoq\.gradle\caches\transforms-1\files-1.1\aapt2-3.2.1-4818971-windows.jar\79758b877cdc4acd10a4d36cead9740a\aapt2-3.2.1-4818971-windows\aapt2.exe link -I\
C:\Users\nicoq\AppData\Local\Android\Sdk\platforms\android-27\android.jar\
--manifest\
C:\Users\nicoq\AndroidStudioProjects\CurrencyConverter\app\build\intermediates\merged_manifests\debug\processDebugManifest\merged\AndroidManifest.xml\
-o\
C:\Users\nicoq\AndroidStudioProjects\CurrencyConverter\app\build\intermediates\processed_res\debug\processDebugResources\out\resources-debug.ap_\
-R\
@C:\Users\nicoq\AndroidStudioProjects\CurrencyConverter\app\build\intermediates\incremental\processDebugResources\resources-list-for-resources-debug.ap_.txt\
--auto-add-overlay\
--java\
C:\Users\nicoq\AndroidStudioProjects\CurrencyConverter\app\build\generated\not_namespaced_r_class_sources\debug\processDebugResources\r\
--custom-package\
com.nicoqueijo.android.currencyconverter\
-0\
apk\
--output-text-symbols\
C:\Users\nicoq\AndroidStudioProjects\CurrencyConverter\app\build\intermediates\symbols\debug\R.txt\
--no-version-vectors
Daemon: AAPT2 aapt2-3.2.1-4818971-windows Daemon #0
* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.
* Get more help at https://help.gradle.org
BUILD FAILED in 1s
我的 build.gradle 文件:
apply plugin: 'com.android.application'
android {
compileSdkVersion 27
defaultConfig {
applicationId "com.nicoqueijo.android.currencyconverter"
minSdkVersion 21
targetSdkVersion 27
versionCode 4
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
lintOptions {
disable 'MissingTranslation'
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:27.1.1'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
implementation 'com.android.volley:volley:1.1.0'
implementation 'com.github.turing-tech:MaterialScrollBar:13.+'
implementation 'com.android.support:appcompat-v7:27.1.1'
implementation 'com.android.support:design:27.1.1'
implementation 'com.android.support:support-v4:27.1.1'
implementation 'com.android.support:cardview-v7:27.1.1'
implementation 'com.github.bosphere.android-fadingedgelayout:fadingedgelayout:1.0.0'
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'
}
最佳答案
可能问题在
implementation 'com.github.turing-tech:MaterialScrollBar:13.+'
我去 github 看看这个 lib build gradle 文件:
def libVersion = '13.3.2'
android {
compileSdkVersion 28
buildToolsVersion '28.0.3'
defaultConfig {
minSdkVersion 14
targetSdkVersion 28
versionName libVersion
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}
我明白了
buildToolsVersion '28.0.3'
但是在你的项目中:
27.1.1
尝试为lib设置更旧的版本,只需添加
implementation 'com.github.turing-tech:MaterialScrollBar:13.3.0'
代替这个
implementation 'com.github.turing-tech:MaterialScrollBar:13.+'
关于安卓工作室错误 : Execution failed for task ':app:processDebugResources' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53678717/
这个问题在这里已经有了答案: Why use async and return await, when you can return Task directly? (8 个答案) 关闭 6 年前。
这个问题在这里已经有了答案: Are the days of passing const std::string & as a parameter over? (13 个答案) 关闭 8 年前。 我
我有一组标记为执行的通用任务。当任务完成时(使用 Task.WaitAny ),我将其添加到 ObservableCollection 中. 但是,问题出在 Task.WaitAny(...)行,上面
经过几个小时的努力,我在我的应用程序中发现了一个错误。我认为下面的 2 个函数具有相同的行为,但事实证明它们没有。 谁能告诉我引擎盖下到底发生了什么,以及为什么它们的行为方式不同? public as
这也与 Python 的导入机制有关,特别是与在函数内使用 import 有关。使用 Python 2.7.9 和 Fabric 1.10.0,创建以下三个文件: fabfile.py: from a
我有一个 Web API Controller (ASP.NET Core 5)。我的一些 API 是异步的,而其中一些不是。我接下来的问题是:使用 public **Task** WebApiMet
我们有类似下面的内容 List uncheckItems = new List(); for (int i = 0; i new Task(async () => await Process
我的代码没问题,但我想知道哪种风格更好,你会怎么看,我正在玩异步方法。 让我建立上下文: Parallel.ForEach(xmlAnimalList, async xml => {
这两种使用 await 的形式在功能上有什么区别吗? string x = await Task.Factory.StartNew(() => GetAnimal("feline")); Task m
我刚刚看到 3 个关于 TPL 使用的例程,它们做同样的工作;这是代码: public static void Main() { Thread.CurrentThread.Name = "Ma
考虑以下代码: public void CacheData() { Task.Run((Action)CacheExternalData); Task.Run(() => CacheE
Task> GetTaskDict() { return Task.FromResult(new Dictionary () ); } 此代码无法编译,因为我们无法在 Task> 到 Tas
我正在使用 ASP.NET 5 RC1 _MyPartial @model MyViewModel @using (Html.BeginForm())
当我尝试在 VS Code 中构建 C 任务时,它显示以下消息: 输出仅显示:The task provider for "C/C++" tasks unexpectedly provided a t
一些背景: 基本上归结为我希望能够在当前线程中“执行”任务。为什么? -我有一个任务创建程序例程,有一次我希望任务在后台任务中立即执行,而其他时候我希望使用 IOmniThreadPool 安排任务。
就目前而言,这个问题不适合我们的问答形式。我们希望答案得到事实、引用或专业知识的支持,但这个问题可能会引起辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the he
我试图将run-sequence添加到我的gulp工作流程中,但是每次尝试执行使用run-sequence的任务时,都会出现此错误: 任务未配置为gulp上的任务。 根据运行序列的来源,这是由以下te
此代码在VS2015中给出了编译时错误 Error CS0266 Cannot implicitly convert type 'System.Threading.Tasks.Task' to 'Sy
我正在尝试通过我的代码通过Google登出: suspend fun signOut(context: Context): Boolean = with(Dispatchers.IO) { t
谁能解释一下这两种说法的区别: Task bTask = backup.BackupCurrentDatabaseAsync() .ContinueWith(_ => CompressArch
我是一名优秀的程序员,十分优秀!