Как исправить проблему с тегом </item> внутри value.xml? - PullRequest
0 голосов
/ 13 мая 2019

Я пытаюсь обновить свое старое приложение для Android, но не могу решить эту ошибку.

.../app/build/intermediates/incremental/mergeDebugResources/merged.dir/values/values.xml:815: error: <item> inner element must either be a resource reference or empty. .../app/build/intermediates/incremental/mergeDebugResources/merged.dir/values/values.xml:816: error: <item> inner element must either be a resource reference or empty. .../app/build/intermediates/incremental/mergeDebugResources/merged.dir/values/values.xml:817: error: <item> inner element must either be a resource reference or empty.

1: я попытался удалить папку сборки внутри приложения и собрать ее заново, но получаю ту же ошибку.

2: я изменяю формат на <item type="id" name="id_name" />, но снова, когда я пытаюсь построить заново, снова появляется ошибка со старым форматом и ошибкой.

** приложение Gradle: ** `применить плагин: 'com.android.application'

android {
compileSdkVersion 27
defaultConfig {
    applicationId 'yagmur.lyrics'
    minSdkVersion 17
    targetSdkVersion 27
    versionCode 2
    versionName 'Pro'

}
buildTypes {
    release {
        minifyEnabled false
        shrinkResources false
        zipAlignEnabled true

        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }
}
packagingOptions {
    exclude 'META-INF/ASL2.0'
    exclude 'META-INF/LICENSE'
    exclude 'META-INF/license.txt'
    exclude 'META-INF/NOTICE'
    exclude 'META-INF/notice.txt'
}
productFlavors {
}
}

repositories {
mavenCentral()
maven {
    url "https://jitpack.io"
}
}

dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
testImplementation 'junit:junit:4.12'
implementation files('libs/jsoup.jar')
implementation 'com.miguelcatalan:materialsearchview:1.4.0'

implementation 'com.android.support:appcompat-v7:27.1.1'
implementation 'com.android.support:design:27.1.1'
implementation 'com.android.support:cardview-v7:27.1.1'
implementation 'com.android.support:support-v4:27.1.1'
implementation 'com.lapism:searchview:4.0'


implementation 'com.gjiazhe:PanoramaImageView:1.0'
implementation project(path: ':play_widget')
}

` gradle app_widget

` применить плагин: 'com.android.library'

android {
compileSdkVersion 27
buildToolsVersion "28.0.2"

defaultConfig {
    minSdkVersion 17
    targetSdkVersion 27
    versionCode 2
    versionName "2.0"
}
buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard- 
android.txt'), 'proguard-rules.pro'
    }
}
resourcePrefix "pw_"

}

dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
//noinspection GradleCompatible
implementation 'com.android.support:design:25.1.1'
}

`

1 Ответ

0 голосов
/ 13 мая 2019

сначала обновите вашу версию сборки

buildToolsVersion

, затем измените три нижеприведенные вещи в файле Gradle

  compileSdkVersion 'your api level'
  minSdkVersion 'your api level'
  targetSdkVersion 'your api level'

и обновите эту зависимость

dependencies {
implementation 'com.android.support:appcompat-v7:'your api level''
}
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...