Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update SSKeychain #97

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Evernote-SDK-iOS.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ Pod::Spec.new do |s|
s.libraries = 'xml2'
s.xcconfig = { 'HEADER_SEARCH_PATHS' => '"$(SDKROOT)/usr/include/libxml2"' }

s.dependency 'SSKeychain', '0.2.1'
s.dependency 'SSKeychain', '~> 1.2.2'
end
8 changes: 8 additions & 0 deletions evernote-sdk-ios.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -244,6 +244,8 @@
A9FDF718165C5C7200DC7E4B /* ENConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = A9FDF716165C5C7100DC7E4B /* ENConstants.h */; settings = {ATTRIBUTES = (Public, ); }; };
A9FDF719165C5C7200DC7E4B /* ENConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = A9FDF717165C5C7100DC7E4B /* ENConstants.m */; };
A9FDF71B165C5D0300DC7E4B /* ENConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = A9FDF717165C5C7100DC7E4B /* ENConstants.m */; };
E55E707119079EAC008B1648 /* SSKeychainQuery.h in Headers */ = {isa = PBXBuildFile; fileRef = E55E706F19079EAC008B1648 /* SSKeychainQuery.h */; };
E55E707219079EAC008B1648 /* SSKeychainQuery.m in Sources */ = {isa = PBXBuildFile; fileRef = E55E707019079EAC008B1648 /* SSKeychainQuery.m */; };
/* End PBXBuildFile section */

/* Begin PBXCopyFilesBuildPhase section */
Expand Down Expand Up @@ -463,6 +465,8 @@
A9D166C4169151D600043DA0 /* TObjective-C.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "TObjective-C.h"; sourceTree = "<group>"; };
A9FDF716165C5C7100DC7E4B /* ENConstants.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ENConstants.h; sourceTree = "<group>"; };
A9FDF717165C5C7100DC7E4B /* ENConstants.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ENConstants.m; sourceTree = "<group>"; };
E55E706F19079EAC008B1648 /* SSKeychainQuery.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SSKeychainQuery.h; sourceTree = "<group>"; };
E55E707019079EAC008B1648 /* SSKeychainQuery.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SSKeychainQuery.m; sourceTree = "<group>"; };
/* End PBXFileReference section */

/* Begin PBXFrameworksBuildPhase section */
Expand Down Expand Up @@ -795,6 +799,8 @@
0BF0CF7E152E25E1003D6115 /* LICENSE */,
0BF0CF7F152E25E1003D6115 /* SSKeychain.h */,
0BF0CF80152E25E1003D6115 /* SSKeychain.m */,
E55E706F19079EAC008B1648 /* SSKeychainQuery.h */,
E55E707019079EAC008B1648 /* SSKeychainQuery.m */,
);
path = SSKeychain;
sourceTree = "<group>";
Expand Down Expand Up @@ -988,6 +994,7 @@
0B943F721525015500DB20A3 /* TProcessorFactory.h in Headers */,
0B943F731525015500DB20A3 /* THTTPClient.h in Headers */,
A9BE47D7178200B400471BF7 /* ENEncryptedContentInfo.h in Headers */,
E55E707119079EAC008B1648 /* SSKeychainQuery.h in Headers */,
A9BE47DA178200B400471BF7 /* ENMIMEUtils.h in Headers */,
A9BE47DD178200B400471BF7 /* ENMLWriter.h in Headers */,
A9BE47E0178200B400471BF7 /* ENXMLDTD.h in Headers */,
Expand Down Expand Up @@ -1251,6 +1258,7 @@
A9BE47DB178200B400471BF7 /* ENMIMEUtils.m in Sources */,
A9BE47DE178200B400471BF7 /* ENMLWriter.m in Sources */,
A9BE47E1178200B400471BF7 /* ENXMLDTD.m in Sources */,
E55E707219079EAC008B1648 /* SSKeychainQuery.m in Sources */,
A9BE47E5178200B400471BF7 /* ENXMLWriter.m in Sources */,
A9BE47EE178200B400471BF7 /* NSRegularExpression+ENAGRegex.m in Sources */,
A9BE47F1178200B400471BF7 /* NSString+EDAMAdditions.m in Sources */,
Expand Down
2 changes: 1 addition & 1 deletion evernote-sdk-ios/3rdParty/SSKeychain/LICENSE
100755 → 100644
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2010-2011 Sam Soffes.
Copyright (c) 2010-2014 Sam Soffes, http://soff.es

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
Expand Down
Loading