Skip to content
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Xcode
.DS_Store
build/
.build/
*.pbxuser
!default.pbxuser
*.mode1v3
Expand Down
10 changes: 9 additions & 1 deletion LUKeychainAccess.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -125,8 +125,8 @@
0226873916BAD892008FC8FA = {
isa = PBXGroup;
children = (
2AFD0B4A27BB9CE2003EB0BF /* Sources */,
F6B0FEE222A89D8F00115793 /* UnitTests */,
0226874716BAD892008FC8FA /* LUKeychainAccess */,
6AC1AB0A1E0766DD00E699C9 /* Testing App */,
0226874416BAD892008FC8FA /* Frameworks */,
0226874316BAD892008FC8FA /* Products */,
Expand Down Expand Up @@ -194,6 +194,14 @@
name = Pods;
sourceTree = "<group>";
};
2AFD0B4A27BB9CE2003EB0BF /* Sources */ = {
isa = PBXGroup;
children = (
0226874716BAD892008FC8FA /* LUKeychainAccess */,
);
path = Sources;
sourceTree = "<group>";
};
6AC1AB0A1E0766DD00E699C9 /* Testing App */ = {
isa = PBXGroup;
children = (
Expand Down
25 changes: 25 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
// swift-tools-version:5.5
// The swift-tools-version declares the minimum version of Swift required to build this package.

import PackageDescription

let package = Package(
name: "LUKeychainAccess",
platforms: [
.iOS(.v13)
],
products: [
.library(
name: "LUKeychainAccess",
targets: ["LUKeychainAccess"]),
],
dependencies: [
],
targets: [
.target(
name: "LUKeychainAccess",
dependencies: [],
exclude: ["LUKeychainAccess-Prefix.pch", "Info.plist"]
)
]
)
File renamed without changes.