-
Notifications
You must be signed in to change notification settings - Fork 108
/
Copy pathPodfile
48 lines (39 loc) · 1.01 KB
/
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
40
41
42
43
44
45
46
47
48
install! 'cocoapods',
:generate_multiple_pod_projects => true
platform :ios, '15.0'
def mixin_services
pod 'libsignal-protocol-c', :git => 'https://github.com/MixinNetwork/libsignal-protocol-c.git'
pod 'MixinServices', :path => './MixinServices', :testspecs => ['Tests']
end
target 'Mixin' do
use_frameworks!
inhibit_all_warnings!
pod 'Firebase/Core'
pod 'Firebase/Analytics'
pod 'Firebase/Performance'
pod 'Firebase/Crashlytics'
pod 'SnapKit'
pod 'AppsFlyerFramework'
pod 'PhoneNumberKit', :git => 'https://github.com/marmelroy/PhoneNumberKit'
pod 'libwebp'
pod 'SDWebImageLottieCoder'
pod 'SVGKit', :git => 'https://github.com/SVGKit/SVGKit'
pod 'SDWebImageSVGKitPlugin'
mixin_services
end
target 'MixinNotificationService' do
use_frameworks!
inhibit_all_warnings!
mixin_services
end
target 'MixinShare' do
use_frameworks!
inhibit_all_warnings!
pod 'SDWebImageLottieCoder'
mixin_services
end
target 'MixinDebug' do
use_frameworks!
inhibit_all_warnings!
mixin_services
end