我的新书《Android App开发入门与实战》已于2020年8月由人民邮电出版社出版,欢迎购买。点击进入详情
关于gitignore的配置,这里有详细的介绍和模板提供:
https://github.com/github/gitignore
在此我们提供一份适用于android开发的gitignore模板,可以直接套用:
# Built application files
*.apk
*.ap_
*.aab
# Files for the ART/Dalvik VM
*.dex
# Java class files
*.class
# Generated files
bin/
gen/
out/
# Gradle files
.gradle/
build/
# Local configuration file (sdk path, etc)
local.properties
# Proguard folder generated by Eclipse
proguard/
# Log Files
*.log
# Android Studio Navigation editor temp files
.navigation/
# Android Studio captures folder
captures/
# IntelliJ
*.iml
.idea
# Keystore files
# Uncomment the following lines if you do not want to check your keystore files in.
#*.jks
#*.keystore
# External native build folder generated in Android Studio 2.2 and later
.externalNativeBuild
# Google Services (e.g. APIs or Firebase)
google-services.json
# Freeline
freeline.py
freeline/
freeline_project_description.json
# fastlane
fastlane/report.xml
fastlane/Preview.html
fastlane/screenshots
fastlane/test_output
fastlane/readme.md
* OSX files
.DS_Store
# Windows thumbnail db
Thumbs.db
#NDK
obj/

本书作者分享了针对Android开发的GitIgnore模板,避免将不必要的文件加入版本控制,包括编译后的应用文件、虚拟机文件、Java类文件、生成文件等。这份详尽的清单有助于保持项目整洁。
805

被折叠的 条评论
为什么被折叠?



