Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
120 changes: 120 additions & 0 deletions mobile/swift-emebd-sdk/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,120 @@
# Xcode generated files
xcuserdata/
*.xcworkspace
*.xcodetestplan
*.xcuserstate
xcshareddata/xcschemes/*.xcscheme # Ignore user-specific scheme settings
xcshareddata/xcschemes/*.xcscheme/ # Ignore user-specific scheme settings (older Xcode)

# Build products
build/
DerivedData/

# CocoaPods
Pods/
Podfile.lock

# Carthage
Carthage/Build/
Cartfile.resolved

# Swift Package Manager (SPM)
.swiftpm/

# Documentation output
docs/

# Archives
*.ipa
*.pkg

# Crash logs and device support
*.crash
~/Library/Developer/Xcode/iOS DeviceSupport/

# Code signing related files (sensitive, avoid committing)
*.cer
*.p12
*.mobileprovision

# Various temporary files and caches
*.swp
*.swo
.DS_Store
.downloaded
*.lock
*.log
*.tmp
*.temp
*.moved-aside
*.xcuserstate
*.perspectivev3
*.perspectivev3mac
*.orig
*.rej
*.mode1v3
*.mode2v3
*.local

# Project specific files that shouldn't be shared
# If you have a configuration file with sensitive data, add it here
# Example:
# Configuration.local.json

# Fastlane files (sensitive, review carefully)
# It's common to commit Fastlane files, but be mindful of sensitive data
# fastlane/report.xml
# fastlane/screenshots/

# Node.js and npm (if your project uses them for tooling)
node_modules/
package-lock.json

# Android Studio (if you have any Android-related files)
.gradle/
build/
*.apk
*.aar
local.properties
.idea/caches/build_file_checksums.ser
.idea/modules/
.idea/workspace.xml
.idea/navEditor.xml
.idea/assetWizardSettings.xml
.idea/gradle.xml
.idea/deploymentTargetDropDown.xml
.idea/protobuf_dependencies.xml
.idea/runConfigurations/

# JetBrains Rider
.idea/

# Visual Studio Code
.vscode/

# Other editor or tool specific files
.sourcetree/
.idea/
.vs/

# OS specific files
.AppleDouble
.LSOverride
._*
Icon?

# Ignore files created by Backup and Sync
/.Backup.md5
/.Backup.lock
/.Backup.tmp

# Files created by Google Drive
Google Drive/.gstmp
Google Drive/.gdclient

# Files created by Dropbox
.dropbox
.dropbox.cache

# Files created by Box
Box Sync/.boxignore
Loading