Files: 2c1932822a8e06b5876eb875f19924a15ae91539 / localnative-ios / Podfile
980 bytesRaw
1 | # Uncomment the next line to define a global platform for your project |
2 | platform :ios, '9.3' |
3 | |
4 | pod 'MMWormhole', '~> 2.0.0' |
5 | |
6 | target 'localnative-ios' do |
7 | # Comment the next line if you're not using Swift and don't want to use dynamic frameworks |
8 | use_frameworks! |
9 | pod 'MMWormhole', '~> 2.0.0' |
10 | |
11 | # Pods for localnative-ios |
12 | |
13 | target 'localnative-iosTests' do |
14 | inherit! :search_paths |
15 | # Pods for testing |
16 | end |
17 | |
18 | target 'localnative-iosUITests' do |
19 | inherit! :search_paths |
20 | # Pods for testing |
21 | end |
22 | |
23 | end |
24 | |
25 | target 'share-ext' do |
26 | # Comment the next line if you're not using Swift and don't want to use dynamic frameworks |
27 | use_frameworks! |
28 | pod 'MMWormhole', '~> 2.0.0' |
29 | pod 'UITextView+Placeholder', '~> 1.3.3' |
30 | # Pods for share-ext |
31 | |
32 | end |
33 | |
34 | post_install do |installer| |
35 | installer.pods_project.targets.each do |target| |
36 | target.build_configurations.each do |config| |
37 | config.build_settings['DEBUG_INFORMATION_FORMAT'] = 'dwarf' |
38 | end |
39 | end |
40 | end |
41 |
Built with git-ssb-web