-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPodfile
39 lines (30 loc) · 1002 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
34
35
36
37
38
39
source 'https://cdn.cocoapods.org/'
source 'https://github.com/FutureWorkshops/MWPodspecs.git'
workspace 'MWPushNotifications'
platform :ios, '17.1'
inhibit_all_warnings!
use_frameworks!
project 'MWPushNotifications/MWPushNotifications.xcodeproj'
project 'MWPushNotificationsPlugin/MWPushNotificationsPlugin.xcodeproj'
abstract_target 'MWPushNotifications' do
pod 'MobileWorkflow'
target 'MWPushNotifications' do
project 'MWPushNotifications/MWPushNotifications.xcodeproj'
target 'MWPushNotificationsTests' do
inherit! :search_paths
end
end
target 'MWPushNotificationsPlugin' do
project 'MWPushNotificationsPlugin/MWPushNotificationsPlugin.xcodeproj'
target 'MWPushNotificationsPluginTests' do
inherit! :search_paths
end
end
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['PROVISIONING_PROFILE_SPECIFIER'] = ""
end
end
end