Skip to content

Commit cfe8b58

Browse files
DasAutoDasAuto
DasAuto
authored and
DasAuto
committed
Initial commit.
0 parents  commit cfe8b58

File tree

18 files changed

+948
-0
lines changed

18 files changed

+948
-0
lines changed

.gitignore

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

Podfile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
source 'https://cdn.cocoapods.org/'
2+
source 'https://github.com/TuyaInc/TuyaPublicSpecs.git'
3+
4+
target 'TuyaAppSDKSample-iOS-Swift' do
5+
pod 'TuyaSmartHomeKit','~> 3.22.0'
6+
end

0 commit comments

Comments
 (0)