我不知道是什么导致了此错误,但是我到处搜索并且没有任何解决方法,它变得更糟!当我构建我的应用程序时,它显示 AAPT2错误:检查日志以获取详细信息。请参阅屏幕截图。
我的项目build.gradle文件
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.1.3'
// classpath 'com.android.tools.build:gradle:3.2.0-alpha13'
// classpath 'com.android.tools.build:gradle:3.1.4'
//classpath 'com.android.tools.build:gradle:3.2.0-alpha11'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
我的应用程序build.gradle文件
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.1.3'
// classpath 'com.android.tools.build:gradle:3.2.0-alpha13'
// classpath 'com.android.tools.build:gradle:3.1.4'
//classpath 'com.android.tools.build:gradle:3.2.0-alpha11'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
我处于论文中间,这给我带来了一个大问题。请帮帮我!
答案 0 :(得分:0)
将此行添加到gradle.properties文件中
android.enableAapt2=true
答案 1 :(得分:0)
看看错误是什么-在您附带的第二张图片中,有3个Android问题(左侧窗口中的最后三个问题)。他们说3个属性有问题。如果单击它们,将可以看到整个错误,然后解决问题。
答案 2 :(得分:0)
跟踪错误 尝试在您的项目目录中运行以下命令
gradlew assembleDebug