element-ios/Podfile

63 lines
1.6 KiB
Text
Raw Normal View History

# Uncomment this line to define a global platform for your project
platform :ios, "8.0"
source 'https://github.com/CocoaPods/Specs.git'
target "Riot" do
2015-12-04 16:13:19 +00:00
# Different flavours of pods to MatrixKit
# The tagged version on which this version of Riot has been built
#pod 'MatrixKit', '0.5.2'
2015-12-04 16:13:19 +00:00
# The lastest release available on the CocoaPods repository
2015-12-04 16:13:19 +00:00
#pod 'MatrixKit'
# The develop branch version
#pod 'MatrixSDK', :git => 'https://github.com/matrix-org/matrix-ios-sdk.git', :branch => 'develop'
#pod 'MatrixKit', :git => 'https://github.com/matrix-org/matrix-ios-kit.git', :branch => 'develop'
2016-09-03 15:29:02 +00:00
# The one used for developing both MatrixSDK and MatrixKit
# Note that MatrixSDK must be cloned into a folder called matrix-ios-sdk next to the MatrixKit folder
pod 'MatrixKit', :path => '../matrix-ios-kit/MatrixKit.podspec'
pod 'MatrixSDK', :path => '../matrix-ios-sdk/MatrixSDK.podspec'
2017-06-13 07:29:08 +00:00
pod 'GBDeviceInfo', '~> 4.3.0'
pod 'GoogleAnalytics'
2016-06-03 14:07:34 +00:00
2016-07-22 16:26:55 +00:00
# The Google WebRTC stack
2017-06-12 15:58:48 +00:00
pod 'WebRTC', '58.17.16937'
2016-07-22 16:26:55 +00:00
# OLMKit for crypto
2016-12-22 17:38:02 +00:00
pod 'OLMKit'
#pod 'OLMKit', :path => '../olm/OLMKit.podspec'
2017-06-13 07:29:08 +00:00
pod 'Realm', '~> 2.8.1'
# Remove warnings from "bad" pods
pod 'OLMKit', :inhibit_warnings => true
pod 'cmark', :inhibit_warnings => true
pod 'DTCoreText', :inhibit_warnings => true
end
target "RiotShareExtension" do
pod 'GoogleAnalytics'
# The Google WebRTC stack
pod 'WebRTC', '58.17.16937'
# OLMKit for crypto
pod 'OLMKit'
#pod 'OLMKit', :path => '../olm/OLMKit.podspec'
pod 'Realm', '~> 2.8.1'
pod 'MatrixSDK', :path => '../matrix-ios-sdk/MatrixSDK.podspec'
2017-07-12 15:45:12 +00:00
pod 'MatrixKit/AppExtension', :path => '../matrix-ios-kit/MatrixKit.podspec'
end