This repository has been archived by the owner on Apr 9, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 86
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
AxolotlStore needs to be defined in SessionBuilder.
- Loading branch information
1 parent
ffc922b
commit 0acacd2
Showing
2 changed files
with
26 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
Pod::Spec.new do |s| | ||
s.name = "AxolotlKit" | ||
s.version = "0.7" | ||
s.summary = "AxolotlKit is a Free implementation of the Axolotl protocol in Objective-C" | ||
s.homepage = "https://github.com/WhisperSystems/AxolotlKit" | ||
s.license = "GPLv2" | ||
s.license = { :type => "GPLv2", :file => "LICENSE" } | ||
s.author = { "Frederic Jacobs" => "[email protected]" } | ||
s.social_media_url = "http://twitter.com/FredericJacobs" | ||
s.source = { :git => "https://github.com/WhisperSystems/AxolotlKit.git", :tag => "#{s.version}" } | ||
s.source_files = "AxolotlKit/Classes/*.{h,m}", "AxolotlKit/Classes/**/*.{h,m}" | ||
s.public_header_files = "AxolotlKit/Classes/*.{h}", "AxolotlKit/Classes/**/*.{h}" | ||
s.name = "AxolotlKit" | ||
s.version = "0.8" | ||
s.summary = "AxolotlKit is a Free implementation of the Axolotl protocol in Objective-C" | ||
s.homepage = "https://github.com/WhisperSystems/AxolotlKit" | ||
s.license = "GPLv2" | ||
s.license = { :type => "GPLv2", :file => "LICENSE" } | ||
s.author = { "Frederic Jacobs" => "[email protected]" } | ||
s.social_media_url = "http://twitter.com/FredericJacobs" | ||
s.source = { :git => "https://github.com/WhisperSystems/AxolotlKit.git", :tag => "#{s.version}" } | ||
s.source_files = "AxolotlKit/Classes/*.{h,m}", "AxolotlKit/Classes/**/*.{h,m}" | ||
s.public_header_files = "AxolotlKit/Classes/*.{h}", "AxolotlKit/Classes/**/*.{h}" | ||
s.ios.deployment_target = "6.0" | ||
s.osx.deployment_target = "10.8" | ||
s.requires_arc = true | ||
s.dependency '25519', '~> 2.0.1' | ||
s.dependency 'HKDFKit', '~> 0.0.3' | ||
s.dependency 'ProtocolBuffers', '~> 1.9.8' | ||
s.requires_arc = true | ||
s.dependency '25519', '~> 2.0.1' | ||
s.dependency 'HKDFKit', '~> 0.0.3' | ||
s.dependency 'ProtocolBuffers', '~> 1.9.8' | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters