找不到与给定名称匹配的资源(在 'dialogCornerRadius' 处,值为 '?android:attr/dialogCornerRadius')
No resource found that matches the given name (at 'dialogCornerRadius' with value '?android:attr/dialogCornerRadius')
任何人都可以帮助我解决以下错误的原因吗?
Error:(7, 41) No resource found that matches the given name (at
'dialogCornerRadius' with value '?android:attr/dialogCornerRadius').
apply plugin: 'com.android.application'
//Add these lines
def Base_URL = '"' + WEBServiceBaseURL + '"' ?: '"Define BASE URL"';
def SMS_Base_URL = '"' + WEBServiceBaseSMSURL + '"' ?: '"Define SMS BASE URL"';
android.buildTypes.each { type ->
type.buildConfigField 'String', 'Base_URL', WEBServiceBaseURL
type.buildConfigField 'String', 'SMS_Base_URL', WEBServiceBaseSMSURL
}
android {
compileSdkVersion 26
buildToolsVersion "26.0.1"
defaultConfig {
applicationId "com.bla.bla"
minSdkVersion 19
targetSdkVersion 26
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
multiDexEnabled true
}
buildTypes {
release {
minifyEnabled true
shrinkResources true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:appcompat-v7:26.+'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
testCompile 'junit:junit:4.12'
compile 'com.android.support:design:+'
compile files('libs/jxl-2.6.jar')
compile 'com.google.gms:google-services:+'
compile 'com.google.firebase:firebase-core:11.8.0'
compile 'com.google.firebase:firebase-messaging:11.8.0'
}
apply plugin: 'com.google.gms.google-services'
我通过选择
解决了这个问题
API 27+: Android API 27, P preview (Preview)
在项目结构设置中。下图显示了我的设置。构建应用程序时出现的 13 个错误已消失。
将行 compile 'com.android.support:design:+'
更改为 compile 'com.android.support:design:26.+'
构建项目时的 gradle 依赖项正在下载最新版本,因为 +
告诉它 "get the latest version." 26.+
将告诉构建过程只更新最新版本的v26.
或者为了更加具体和安全,将行更改为特定版本,完全避免 +
。即 compile 'com.android.support:design:27.1.0'
在大家的帮助下,我可以解决这个问题& 运行低版本的应用程序。
我更新后的 build.gradle 如下所示。
特别感谢所有天才!
apply plugin: 'com.android.application'
android.buildTypes.each { type ->
type.buildConfigField 'String', 'Base_URL', WEBServiceBaseURL
type.buildConfigField 'String', 'SMS_Base_URL', WEBServiceBaseSMSURL
}
android {
compileSdkVersion 27
buildToolsVersion "26.0.2"
defaultConfig {
applicationId "com.dummy.dummy"
minSdkVersion 15
targetSdkVersion 22
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
multiDexEnabled true
}
buildTypes {
release {
minifyEnabled true
shrinkResources true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:appcompat-v7:26.+'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
testCompile 'junit:junit:4.12'
compile 'com.android.support:design:26.+'
compile files('libs/jxl-2.6.jar')
compile 'com.google.gms:google-services:+'
compile 'com.google.firebase:firebase-core:11.8.0'
compile 'com.google.firebase:firebase-messaging:11.8.0'
}
apply plugin: 'com.google.gms.google-services'
忘记动态依赖并用固定的特定版本替换它们:
错误:
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:appcompat-v7:26.+'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
testCompile 'junit:junit:4.12'
compile 'com.android.support:design:+'
compile files('libs/jxl-2.6.jar')
compile 'com.google.gms:google-services:+'
compile 'com.google.firebase:firebase-core:11.8.0'
compile 'com.google.firebase:firebase-messaging:11.8.0'
}
正确:
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:appcompat-v7:26.1.0'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
testCompile 'junit:junit:4.12'
compile 'com.android.support:design:26.1.0'
compile files('libs/jxl-2.6.jar')
compile 'com.google.gms:google-services:3.1.1'
compile 'com.google.firebase:firebase-core:11.8.0'
compile 'com.google.firebase:firebase-messaging:11.8.0'
}
更改 gradle 中的以下依赖项:
compile 'com.android.support:design:+'
至:
compile 'com.android.support:design:26.1.0'
'com.android.support:appcompat-v7:26.+'
至:
'com.android.support:appcompat-v7:26.1.0'
请注意,您可以指定任何版本,但请确保它们具有相同的版本。
这将确保不会创建 values-28.xml
文件。
设置你的compileSdkVersion 28
让 android studio 下载平台文件
如果在您的应用程序级别 gradle 如果您使用了 compileSdkVersion = 27 那么它将不起作用。
您必须使用版本 28。
compileSdkVersion 28
buildToolsVersion '28.0.3'
迁移到 AndroidX 失败后出现同样的错误。
我还原了 Android Studio 所做的所有更改、清理了项目、使 cache/restart 无效以及许多其他事情,但没有成功。
最后我发现 Android Studio 在 gradle.properties 中添加了两行:
android.useAndroidX=true
android.enableJetifier=true
删除这些线后一切恢复正常。
我都试过了,还是不行。最后,我在 platforms/android/project.properties 中将目标更改为 28 后它起作用了。
改变
target=android-26
到
target=android-28
谢谢
任何人都可以帮助我解决以下错误的原因吗?
Error:(7, 41) No resource found that matches the given name (at 'dialogCornerRadius' with value '?android:attr/dialogCornerRadius').
apply plugin: 'com.android.application'
//Add these lines
def Base_URL = '"' + WEBServiceBaseURL + '"' ?: '"Define BASE URL"';
def SMS_Base_URL = '"' + WEBServiceBaseSMSURL + '"' ?: '"Define SMS BASE URL"';
android.buildTypes.each { type ->
type.buildConfigField 'String', 'Base_URL', WEBServiceBaseURL
type.buildConfigField 'String', 'SMS_Base_URL', WEBServiceBaseSMSURL
}
android {
compileSdkVersion 26
buildToolsVersion "26.0.1"
defaultConfig {
applicationId "com.bla.bla"
minSdkVersion 19
targetSdkVersion 26
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
multiDexEnabled true
}
buildTypes {
release {
minifyEnabled true
shrinkResources true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:appcompat-v7:26.+'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
testCompile 'junit:junit:4.12'
compile 'com.android.support:design:+'
compile files('libs/jxl-2.6.jar')
compile 'com.google.gms:google-services:+'
compile 'com.google.firebase:firebase-core:11.8.0'
compile 'com.google.firebase:firebase-messaging:11.8.0'
}
apply plugin: 'com.google.gms.google-services'
我通过选择
解决了这个问题API 27+: Android API 27, P preview (Preview)
在项目结构设置中。下图显示了我的设置。构建应用程序时出现的 13 个错误已消失。
将行 compile 'com.android.support:design:+'
更改为 compile 'com.android.support:design:26.+'
构建项目时的 gradle 依赖项正在下载最新版本,因为 +
告诉它 "get the latest version." 26.+
将告诉构建过程只更新最新版本的v26.
或者为了更加具体和安全,将行更改为特定版本,完全避免 +
。即 compile 'com.android.support:design:27.1.0'
在大家的帮助下,我可以解决这个问题& 运行低版本的应用程序。
我更新后的 build.gradle 如下所示。
特别感谢所有天才!
apply plugin: 'com.android.application'
android.buildTypes.each { type ->
type.buildConfigField 'String', 'Base_URL', WEBServiceBaseURL
type.buildConfigField 'String', 'SMS_Base_URL', WEBServiceBaseSMSURL
}
android {
compileSdkVersion 27
buildToolsVersion "26.0.2"
defaultConfig {
applicationId "com.dummy.dummy"
minSdkVersion 15
targetSdkVersion 22
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
multiDexEnabled true
}
buildTypes {
release {
minifyEnabled true
shrinkResources true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:appcompat-v7:26.+'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
testCompile 'junit:junit:4.12'
compile 'com.android.support:design:26.+'
compile files('libs/jxl-2.6.jar')
compile 'com.google.gms:google-services:+'
compile 'com.google.firebase:firebase-core:11.8.0'
compile 'com.google.firebase:firebase-messaging:11.8.0'
}
apply plugin: 'com.google.gms.google-services'
忘记动态依赖并用固定的特定版本替换它们:
错误:
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:appcompat-v7:26.+'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
testCompile 'junit:junit:4.12'
compile 'com.android.support:design:+'
compile files('libs/jxl-2.6.jar')
compile 'com.google.gms:google-services:+'
compile 'com.google.firebase:firebase-core:11.8.0'
compile 'com.google.firebase:firebase-messaging:11.8.0'
}
正确:
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:appcompat-v7:26.1.0'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
testCompile 'junit:junit:4.12'
compile 'com.android.support:design:26.1.0'
compile files('libs/jxl-2.6.jar')
compile 'com.google.gms:google-services:3.1.1'
compile 'com.google.firebase:firebase-core:11.8.0'
compile 'com.google.firebase:firebase-messaging:11.8.0'
}
更改 gradle 中的以下依赖项:
compile 'com.android.support:design:+'
至:
compile 'com.android.support:design:26.1.0'
'com.android.support:appcompat-v7:26.+'
至:
'com.android.support:appcompat-v7:26.1.0'
请注意,您可以指定任何版本,但请确保它们具有相同的版本。
这将确保不会创建 values-28.xml
文件。
设置你的compileSdkVersion 28 让 android studio 下载平台文件
如果在您的应用程序级别 gradle 如果您使用了 compileSdkVersion = 27 那么它将不起作用。 您必须使用版本 28。
compileSdkVersion 28
buildToolsVersion '28.0.3'
迁移到 AndroidX 失败后出现同样的错误。 我还原了 Android Studio 所做的所有更改、清理了项目、使 cache/restart 无效以及许多其他事情,但没有成功。 最后我发现 Android Studio 在 gradle.properties 中添加了两行:
android.useAndroidX=true
android.enableJetifier=true
删除这些线后一切恢复正常。
我都试过了,还是不行。最后,我在 platforms/android/project.properties 中将目标更改为 28 后它起作用了。
改变
target=android-26
到
target=android-28
谢谢