我在这个包中有一个HillfortStore类:
package org.wit.hillforts.models
在类中混淆了软件包名称(缺少“s”):
package org.wit.hillforts.model
使用错误的包名称将类导入其他类,它可以正常工作:
import org.wit.hillforts.model.HillfortStore
为了清理问题,我在类及其所有导入的类中修复了名称。现在,我收到此错误。
错误:任务':app:transformClassesWithDexBuilderForDebug'的执行失败。
最佳答案
只是这样做:
在主项目文件夹中,在终端类型中
cd android
然后输入
./gradlew clean
然后再次构建您的应用