我知道我必须/build
项目根目录中的Application/build/
文件夹。但是还有build/
个文件夹。我需要跟踪吗?
更新:我看到还有另一个类似的问题,但更为一般。但是,我没有看到有人在谈论像我这样的问题。看起来如果你把斜杠放在最后会产生不同:componentDidMount(){
document.body.addEventListener("keypress", (e) => {
if (e.key === "t") { // "n" "w" "," for the others
this.setState({opened: !this.state.opened});
}
});
}
看起来没有人在那里谈论Application / build文件夹。这必须是新的项目结构,因为有些人使用/ builder并且它适用于它们。这是因为他们没有“应用程序/构建器”文件夹。我认为。
答案 0 :(得分:3)
典型的AndroidStudio gitignore file确实包含了gitignore规则
build/
这将忽略任何构建文件夹,从存储库的顶层文件夹递归
包括Application/build
。