-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPodfile
More file actions
36 lines (21 loc) · 666 Bytes
/
Podfile
File metadata and controls
36 lines (21 loc) · 666 Bytes
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
platform :ios, '15.0'
source 'https://github.com/CocoaPods/Specs.git'
install! 'cocoapods', :deterministic_uuids => false
use_frameworks!
inhibit_all_warnings!
project 'FlutterTest.xcodeproj'
flutter_application_path = '../modulenamea'
load File.join(flutter_application_path, '.ios', 'Flutter', 'podhelper.rb')
pre_install do |installer|
def installer.verify_no_static_framework_transitive_dependencies; end
end
def allPods
end
target 'FlutterTest' do
inherit! :search_paths
install_all_flutter_pods(flutter_application_path)
allPods
end
post_install do |installer|
flutter_post_install(installer) if defined?(flutter_post_install)
end