Skip to content

Commit 83847a2

Browse files
committed
add Sample
1 parent 4e4b2dc commit 83847a2

File tree

13 files changed

+701
-0
lines changed

13 files changed

+701
-0
lines changed

Sample/Podfile

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
platform :ios, '8.0'
2+
3+
workspace 'Sample.xcworkspace'
4+
xcodeproj 'Sample.xcodeproj'
5+
6+
source 'https://github.com/CocoaPods/Specs.git'
7+
8+
target 'Sample' do
9+
pod 'MaterialDesignSymbolObjC', :path => '../'
10+
end
11+
12+
# Pods配下のプロジェクトのBuild Active Architecture OnlyをNOにする
13+
post_install do |installer|
14+
# PodのBuildActiveArchitectureOnlyをNoに変更
15+
installer.pods_project.build_configurations.each do |config|
16+
config.build_settings['ONLY_ACTIVE_ARCH'] = 'NO'
17+
end
18+
# PodのBuildActiveArchitectureOnlyをすべてNoに変更
19+
installer.pods_project.targets.each do |target|
20+
target.build_configurations.each do |config|
21+
config.build_settings['ONLY_ACTIVE_ARCH'] = 'NO'
22+
end
23+
end
24+
end

0 commit comments

Comments
 (0)