每次在AndroidStudio中创建新项目时,我都会收到Gradle错误?我已经在mac上安装并重新安装了android studio,但错误仍然出现并得到了同样的错误。 低于Logcat的错误。
/Users/yodgorbekkomilov/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/d531dbb8e7f408824a92fa6cc86908a2/res/layout/select_dialog_item_material.xml
错误:(31,27)找不到与给定名称匹配的资源(at 'paddingStart'的值为'?attr / listPreferredItemPaddingStart')。 错误:(32,25)找不到与给定名称匹配的资源(at 'paddingEnd'的值为'?attr / listPreferredItemPaddingEnd')。 /Users/yodgorbekkomilov/Desktop/MyApplication2/app/build/intermediates/res/merged/debug/layout/select_dialog_item_material.xml
错误:(31,27)找不到与给定名称匹配的资源(at 'paddingStart'的值为'?attr / listPreferredItemPaddingStart')。 错误:(32,25)找不到与给定名称匹配的资源(at 'paddingEnd'的值为'?attr / listPreferredItemPaddingEnd')。
错误:java.util.concurrent.ExecutionException: com.android.ide.common.process.ProcessException:执行时出错 处理 /Users/yodgorbekkomilov/Library/Android/sdk/build-tools/26.0.2/aapt 带参数{package -f --no-crunch -I /Users/yodgorbekkomilov/Library/Android/sdk/platforms/android-26/android.jar -M /Users/yodgorbekkomilov/Desktop/MyApplication2/app/build/intermediates/manifests/full/debug/AndroidManifest.xml -S / Users / yodgorbekkomilov / Desktop / MyApplication2 / app / build / intermediates / res / merged / debug -m -J / Users / yodgorbekkomilov / Desktop / MyApplication2 / app / build / generated / source / r / debug -F /Users/yodgorbekkomilov/Desktop/MyApplication2/app/build/intermediates/res/debug/resources-debug.ap_ --custom-package com.example.yodgorbekkomilov.myapplication -0 apk --output-text-symbols / Users / yodgorbekkomilov / Desktop / MyApplication2 / app / build / intermediates / symbols / debug --no版本向量}
错误:org.gradle.process.internal.ExecException:进程'命令 '/Users/yodgorbekkomilov/Library/Android/sdk/build-tools/26.0.2/aapt'” 完成非零退出值1错误:任务执行失败 ':应用程序:processDebugResources'。
无法执行aapt
below my buld.gradle file
android {
compileSdkVersion 26
defaultConfig {
applicationId "com.example.yodgorbekkomilov.myapplication"
minSdkVersion 15
targetSdkVersion 26
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'])
implementation 'com.android.support:appcompat-v7:26.1.0'
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.1'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
}
答案 0 :(得分:0)
错误:(31,27)找不到与给定名称匹配的资源(在'paddingStart'中,值为'?attr / listPreferredItemPaddingStart')。错误:(32,25)找不到与给定名称匹配的资源(在'paddingEnd'中,值为'?attr / listPreferredItemPaddingEnd')。
似乎已将?attr/listPreferredItemPaddingEnd
从API中移除26.尝试对您paddingStart
文件中的paddingEnd
和select_dialog_item_material.xml
属性使用其他值。