Skip to content
This repository was archived by the owner on Jan 10, 2023. It is now read-only.

Commit 0a28202

Browse files
committed
Added license info
1 parent 469cbb1 commit 0a28202

File tree

3 files changed

+42
-0
lines changed

3 files changed

+42
-0
lines changed

SwiftKeychainWrapperExample.xcodeproj/project.pbxproj

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
47E82D511A78046800B5A9F5 /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 47E82D4F1A78046800B5A9F5 /* LaunchScreen.xib */; };
1515
47E82D5D1A78046900B5A9F5 /* SwiftKeychainWrapperExampleTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 47E82D5C1A78046900B5A9F5 /* SwiftKeychainWrapperExampleTests.swift */; };
1616
668BA9277C32D26A5D193A42 /* Pods.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CA049F5B828BB8C0AAEC7476 /* Pods.framework */; settings = {ATTRIBUTES = (Weak, ); }; };
17+
966E4AB31B966A5500A8DCEB /* LICENSE in Resources */ = {isa = PBXBuildFile; fileRef = 966E4AB21B966A5500A8DCEB /* LICENSE */; };
1718
/* End PBXBuildFile section */
1819

1920
/* Begin PBXContainerItemProxy section */
@@ -40,6 +41,7 @@
4041
69A949C6B455BF986C695139 /* Pods.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = Pods.release.xcconfig; path = "Pods/Target Support Files/Pods/Pods.release.xcconfig"; sourceTree = "<group>"; };
4142
755C8B995C546F17A93A487F /* Pods.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = Pods.debug.xcconfig; path = "Pods/Target Support Files/Pods/Pods.debug.xcconfig"; sourceTree = "<group>"; };
4243
965575861AC24F7A00980AB1 /* SwiftKeychainWrapperExample.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.xml; path = SwiftKeychainWrapperExample.entitlements; sourceTree = "<group>"; };
44+
966E4AB21B966A5500A8DCEB /* LICENSE */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = LICENSE; path = ../KeychainWrapper/LICENSE; sourceTree = "<group>"; };
4345
CA049F5B828BB8C0AAEC7476 /* Pods.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods.framework; sourceTree = BUILT_PRODUCTS_DIR; };
4446
/* End PBXFileReference section */
4547

@@ -73,6 +75,7 @@
7375
47E82D381A78046800B5A9F5 = {
7476
isa = PBXGroup;
7577
children = (
78+
966E4AB21B966A5500A8DCEB /* LICENSE */,
7679
47E82D431A78046800B5A9F5 /* SwiftKeychainWrapperExample */,
7780
47E82D591A78046900B5A9F5 /* SwiftKeychainWrapperExampleTests */,
7881
47E82D421A78046800B5A9F5 /* Products */,
@@ -228,6 +231,7 @@
228231
files = (
229232
47E82D4C1A78046800B5A9F5 /* Main.storyboard in Resources */,
230233
47E82D511A78046800B5A9F5 /* LaunchScreen.xib in Resources */,
234+
966E4AB31B966A5500A8DCEB /* LICENSE in Resources */,
231235
47E82D4E1A78046800B5A9F5 /* Images.xcassets in Resources */,
232236
);
233237
runOnlyForDeploymentPostprocessing = 0;

SwiftKeychainWrapperExample/AppDelegate.swift

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,27 @@
33
// SwiftKeychainWrapperExample
44
//
55
// Created by Jason Rendel on 1/27/15.
6+
// Copyright (c) 2014 Jason Rendel. All rights reserved.
67
//
8+
// The MIT License (MIT)
79
//
10+
// Permission is hereby granted, free of charge, to any person obtaining a copy
11+
// of this software and associated documentation files (the "Software"), to deal
12+
// in the Software without restriction, including without limitation the rights
13+
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14+
// copies of the Software, and to permit persons to whom the Software is
15+
// furnished to do so, subject to the following conditions:
16+
//
17+
// The above copyright notice and this permission notice shall be included in all
18+
// copies or substantial portions of the Software.
19+
//
20+
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21+
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22+
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
23+
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24+
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25+
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
26+
// SOFTWARE.
827

928
import UIKit
1029

SwiftKeychainWrapperExample/ViewController.swift

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,27 @@
33
// SwiftKeychainWrapperExample
44
//
55
// Created by Jason Rendel on 1/27/15.
6+
// Copyright (c) 2014 Jason Rendel. All rights reserved.
67
//
8+
// The MIT License (MIT)
79
//
10+
// Permission is hereby granted, free of charge, to any person obtaining a copy
11+
// of this software and associated documentation files (the "Software"), to deal
12+
// in the Software without restriction, including without limitation the rights
13+
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14+
// copies of the Software, and to permit persons to whom the Software is
15+
// furnished to do so, subject to the following conditions:
16+
//
17+
// The above copyright notice and this permission notice shall be included in all
18+
// copies or substantial portions of the Software.
19+
//
20+
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21+
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22+
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
23+
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24+
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25+
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
26+
// SOFTWARE.
827

928
import UIKit
1029
import SwiftKeychainWrapper

0 commit comments

Comments
 (0)