0
Someone can help me to correct these errors, I found several places citing this error, but nothing works, I’m already a week trying to fix it:
C:\Users\DEV005\.gradle\caches\transforms-1\files-1.1\appcompat-v7-28.0.0-alpha1.aar\52848053fe321f69e8475a1f12a2682e\res\values-v28\values-v28.xml
Error:(9, 5) error: resource android:attr/dialogCornerRadius not found.
C:\Users\DEV005\.gradle\caches\transforms-1\files-1.1\appcompat-v7-28.0.0-alpha1.aar\52848053fe321f69e8475a1f12a2682e\res\values\values.xml
Error:(1452, 5) error: resource android:color/button_material_light is private.
Error:(252, 5) error: resource android:attr/fontVariationSettings not found.
Error:(252, 5) error: resource android:attr/ttcIndex not found.
D:\GitHub\KwikView-master\app\build\intermediates\incremental\mergeDebugResources\merged.dir\values-v28\values-v28.xml
Error:(11) error: resource android:attr/dialogCornerRadius not found.
Error:(7) resource android:attr/dialogCornerRadius not found.
Error:(11) resource android:attr/dialogCornerRadius not found.
D:\GitHub\KwikView-master\app\build\intermediates\incremental\mergeDebugResources\merged.dir\values\values.xml
Error:(1881) resource android:color/button_material_light is private.
Error:(298) resource android:attr/fontVariationSettings not found.
Error:(298) resource android:attr/ttcIndex not found.
Error:failed linking references.
This project was initially developed in eclipse I migrated it to android-studio, but I believe it is still missing something.
Extra
I still have 3 libraries and within one of them also this error, so I think it’s something of configuration:
apply plugin: 'com.android.application'
android {
compileSdkVersion 26
buildToolsVersion '26.0.2'
defaultConfig {
applicationId "com.demo"
minSdkVersion 14
targetSdkVersion 26
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:+'
compile 'org.altbeacon:android-beacon-library:2+'
compile 'com.google.android.gms:play-services:7.8.0'
compile 'me.dm7.barcodescanner:zxing:1.8.1'
compile files('libs/android-query-full.0.26.7.jar')
}
Already tried to clean the project by Android Studio?
– Max Fratane
Already yes, I’ve gone straight to delete the files too.
– Marcius Leandro