Skip to content

Commit bb07fd1

Browse files
committed
Add .gitignore files to projects.
1 parent 95db0a1 commit bb07fd1

File tree

4 files changed

+132
-0
lines changed

4 files changed

+132
-0
lines changed

android-sample/.gitignore

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
# Windows thumbnail db
2+
Thumbs.db
3+
4+
# OSX files
5+
.DS_Store
6+
7+
# built application files
8+
*.apk
9+
*.ap_
10+
11+
# files for the dex VM
12+
*.dex
13+
14+
# Java class files
15+
*.class
16+
17+
# generated files
18+
bin/
19+
gen/
20+
build/
21+
22+
# Local configuration file (sdk path, etc)
23+
local.properties
24+
25+
# Eclipse project files
26+
.classpath
27+
.project
28+
29+
# Android Studio
30+
.idea
31+
.gradle
32+
/*/local.properties
33+
/*/out
34+
/*/*/build
35+
build
36+
/*/*/production
37+
*.iml
38+
*.iws
39+
*.ipr
40+
*~
41+
*.swp

ios-sample/.gitignore

+83
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,83 @@
1+
### Swift ###
2+
# Xcode
3+
#
4+
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
5+
6+
## User settings
7+
xcuserdata/
8+
9+
## compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9)
10+
*.xcscmblueprint
11+
*.xccheckout
12+
13+
## compatibility with Xcode 3 and earlier (ignoring not required starting Xcode 4)
14+
build/
15+
DerivedData/
16+
*.moved-aside
17+
*.pbxuser
18+
!default.pbxuser
19+
*.mode1v3
20+
!default.mode1v3
21+
*.mode2v3
22+
!default.mode2v3
23+
*.perspectivev3
24+
!default.perspectivev3
25+
26+
## Obj-C/Swift specific
27+
*.hmap
28+
29+
## App packaging
30+
*.ipa
31+
*.dSYM.zip
32+
*.dSYM
33+
34+
## Playgrounds
35+
timeline.xctimeline
36+
playground.xcworkspace
37+
38+
# Swift Package Manager
39+
# Add this line if you want to avoid checking in source code from Swift Package Manager dependencies.
40+
# Packages/
41+
# Package.pins
42+
# Package.resolved
43+
# *.xcodeproj
44+
# Xcode automatically generates this directory with a .xcworkspacedata file and xcuserdata
45+
# hence it is not needed unless you have added a package configuration file to your project
46+
# .swiftpm
47+
48+
.build/
49+
50+
# CocoaPods
51+
# We recommend against adding the Pods directory to your .gitignore. However
52+
# you should judge for yourself, the pros and cons are mentioned at:
53+
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
54+
# Pods/
55+
# Add this line if you want to avoid checking in source code from the Xcode workspace
56+
# *.xcworkspace
57+
58+
# Carthage
59+
# Add this line if you want to avoid checking in source code from Carthage dependencies.
60+
# Carthage/Checkouts
61+
62+
Carthage/Build/
63+
64+
# Accio dependency management
65+
Dependencies/
66+
.accio/
67+
68+
# fastlane
69+
# It is recommended to not store the screenshots in the git repo.
70+
# Instead, use fastlane to re-generate the screenshots whenever they are needed.
71+
# For more information about the recommended setup visit:
72+
# https://docs.fastlane.tools/best-practices/source-control/#source-control
73+
74+
fastlane/report.xml
75+
fastlane/Preview.html
76+
fastlane/screenshots/**/*.png
77+
fastlane/test_output
78+
79+
# Code Injection
80+
# After new code Injection tools there's a generated folder /iOSInjectionProject
81+
# https://github.com/johnno1962/injectionforxcode
82+
83+
iOSInjectionProject/

rust-library/.gitignore

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
### Rust ###
2+
# Generated by Cargo
3+
# will have compiled files and executables
4+
/target/
5+
6+
# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
7+
# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
8+
Cargo.lock

web-sample/.gitignore

Whitespace-only changes.

0 commit comments

Comments
 (0)