Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在学习 Android 开发,我对清理和重建项目感到困惑。我的问题是:
Gradle将维护构建缓存,您可以看到app/build文件夹下的项目,它包含自动生成的类,构建缓存,每次构建项目时,gradle 将使用该缓存来减少工作量,这样做clean将清除项目的缓存并告诉 Gradle进行全新构建,从而为后续任务执行带来大量额外的构建时间。
Gradle
app/build
clean
Rebuild先清理然后构建项目。
Rebuild