我正在尝试克隆我朋友最近推送到GitHub的Android Studio中的存储库。他在资源目录中放了一个png文件,当我尝试构建它时,控制台说:
/.../app/src/main/res/picture100/empty.png: Error: The file name must end with .xml
我已经搜索了很多解决方案,但发现在大多数类似情况下,控制台消息显示“文件名必须以.xml或.png结尾”,所以请注意,在我的消息中有没有“或.png”,因为它只是gradle在资源文件中不允许的png文件。
我已经与我的朋友确认我们使用的是Gradle(4.1)和Android插件(3.0.0)的相同版本。
build.gralde:
apply plugin: 'com.android.application'
android {
compileSdkVersion 26
defaultConfig {
applicationId "com.example.xyzhang.testapp"
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'
implementation 'com.android.support:design:26.1.0'
implementation 'com.android.support:support-v4:26.1.0'
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'
}
符号R永远不会被解析,因为gradle构建失败了。它显示为红色。
如何解决这个问题?
答案 0 :(得分:0)
/.../app/src/main/res/picture100/empty.png: Error: The file name must end with .xml
好像您在 res 文件夹中创建了 picture100 文件夹。 Android不允许您在 res 目录中创建此类文件夹。所以你必须删除它。
或者,如果您希望继续使用 picture100 文件夹,则必须将xml
个文件放在此文件夹中。
您可以在 drawable 或 mipmap
中使用图片文件