- Remove .gradle/ directory from git tracking (build cache files) - Add .gradle/ to .gitignore to prevent future tracking - Clean up repository by excluding unnecessary build artifacts Gradle build cache files (fileHashes, configuration-cache, etc.) are machine-specific and should not be committed to version control. This improves repository cleanliness and prevents build conflicts.
67 lines
777 B
Plaintext
67 lines
777 B
Plaintext
# Dependencies
|
|
node_modules/
|
|
npm-debug.log
|
|
yarn-debug.log
|
|
yarn-error.log
|
|
|
|
# Build output
|
|
dist/
|
|
build/
|
|
*.tsbuildinfo
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Gradle build cache (root level)
|
|
.gradle/
|
|
|
|
# Android
|
|
android/app/build/
|
|
android/build/
|
|
android/gradle/
|
|
android/gradlew
|
|
android/gradlew.bat
|
|
android/.gradle/
|
|
android/local.properties
|
|
android/.idea/
|
|
android/*.iml
|
|
|
|
# iOS
|
|
ios/Pods/
|
|
ios/build/
|
|
ios/Podfile.lock
|
|
ios/.xcode.env.local
|
|
ios/DerivedData/
|
|
ios/*.xcworkspace/
|
|
ios/*.xcodeproj/*
|
|
!ios/*.xcodeproj/project.pbxproj
|
|
!ios/*.xcodeproj/xcshareddata/
|
|
!ios/*.xcworkspace/contents.xcworkspacedata
|
|
|
|
# Testing
|
|
coverage/
|
|
.nyc_output/
|
|
|
|
# Logs
|
|
logs/
|
|
*.log
|
|
|
|
# Environment
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.temp
|
|
.cache/
|
|
*.lock
|
|
*.bin
|
|
workflow/ |