-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathPodfile
33 lines (28 loc) · 842 Bytes
/
Podfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# Uncomment the next line to define a global platform for your project
platform :ios, '11.0'
workspace 'PlacenoteSDKExample'
xcodeproj 'RandomShapes/RandomShapes.xcodeproj'
xcodeproj 'HelloWorld/HelloWorld.xcodeproj'
xcodeproj 'DecorateYourRoom/DecorateYourRoom.xcodeproj'
target 'HelloWorld' do
use_frameworks!
xcodeproj 'HelloWorld/HelloWorld.xcodeproj'
pod 'PlacenoteSDK'
end
target 'DecorateYourRoom' do
use_frameworks!
xcodeproj 'DecorateYourRoom/DecorateYourRoom.xcodeproj'
pod 'PlacenoteSDK'
end
target 'RandomShapes' do
use_frameworks!
xcodeproj 'RandomShapes/RandomShapes.xcodeproj'
pod 'PlacenoteSDK'
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['ENABLE_BITCODE'] = 'NO'
end
end
end