Skip to content

Commit d4c984a

Browse files
authoredDec 29, 2022
Merge pull request #3 from tcamin/feature/xcodegen
Add XcodeGen
2 parents af92079 + 2594d23 commit d4c984a

File tree

74 files changed

+48
-3192
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

74 files changed

+48
-3192
lines changed
 

‎.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
.DS_Store
2+
Pods/
3+
*.xcodeproj/
4+
*.xcworkspace/

‎Podfile

+5-10
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,9 @@
1-
# Uncomment the next line to define a global platform for your project
2-
# platform :ios, '9.0'
1+
platform :ios, '15.0'
32

4-
platform :ios, '12.0'
3+
use_frameworks!
54

6-
target 'PushNotificationDemo' do
7-
# Comment the next line if you don't want to use dynamic frameworks
8-
use_frameworks!
9-
10-
target 'PushNotificationDemoUITests' do
11-
# Pods for testing
12-
pod 'SBTUITestTunnelHost', :git => 'https://github.com/Subito-it/SBTUITestTunnelHost.git'
5+
target 'Sample' do
6+
target 'UITests' do
7+
pod 'SBTUITestTunnelHost', :git => 'https://github.com/Subito-it/SBTUITestTunnelHost.git' # Pin to master branch
138
end
149
end

0 commit comments

Comments
 (0)
Please sign in to comment.