diff --git a/.swiftpm/xcode/package.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings b/.swiftpm/xcode/package.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings
new file mode 100644
index 0000000..54782e3
--- /dev/null
+++ b/.swiftpm/xcode/package.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings
@@ -0,0 +1,8 @@
+
+
+
+
+ IDEWorkspaceSharedSettings_AutocreateContextsIfNeeded
+
+
+
diff --git a/.swiftpm/xcode/package.xcworkspace/xcuserdata/jameswolfe.xcuserdatad/UserInterfaceState.xcuserstate b/.swiftpm/xcode/package.xcworkspace/xcuserdata/jameswolfe.xcuserdatad/UserInterfaceState.xcuserstate
index 53d9157..8d24744 100644
Binary files a/.swiftpm/xcode/package.xcworkspace/xcuserdata/jameswolfe.xcuserdatad/UserInterfaceState.xcuserstate and b/.swiftpm/xcode/package.xcworkspace/xcuserdata/jameswolfe.xcuserdatad/UserInterfaceState.xcuserstate differ
diff --git a/.swiftpm/xcode/xcshareddata/xcschemes/AtlasKit.xcscheme b/.swiftpm/xcode/xcshareddata/xcschemes/AtlasKit.xcscheme
new file mode 100644
index 0000000..2c18a5a
--- /dev/null
+++ b/.swiftpm/xcode/xcshareddata/xcschemes/AtlasKit.xcscheme
@@ -0,0 +1,91 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/.swiftpm/xcode/xcuserdata/jameswolfe.xcuserdatad/xcschemes/xcschememanagement.plist b/.swiftpm/xcode/xcuserdata/jameswolfe.xcuserdatad/xcschemes/xcschememanagement.plist
new file mode 100644
index 0000000..5da33dc
--- /dev/null
+++ b/.swiftpm/xcode/xcuserdata/jameswolfe.xcuserdatad/xcschemes/xcschememanagement.plist
@@ -0,0 +1,27 @@
+
+
+
+
+ SchemeUserState
+
+ AtlasKit.xcscheme_^#shared#^_
+
+ orderHint
+ 0
+
+
+ SuppressBuildableAutocreation
+
+ AtlasKit
+
+ primary
+
+
+ AtlasKitTests
+
+ primary
+
+
+
+
+
diff --git a/AtlasKit.podspec b/AtlasKit.podspec
index bc66c30..862af88 100644
--- a/AtlasKit.podspec
+++ b/AtlasKit.podspec
@@ -1,7 +1,7 @@
Pod::Spec.new do |spec|
spec.name = "AtlasKit"
- spec.version = "0.1"
+ spec.version = "0.1.1"
spec.license = "MIT"
spec.summary = "A swift library for quickly integrating a location search in your app."
spec.homepage = "https://github.com/appoly/AtlasKit"
diff --git a/Package.resolved b/Package.resolved
new file mode 100644
index 0000000..ca61370
--- /dev/null
+++ b/Package.resolved
@@ -0,0 +1,16 @@
+{
+ "object": {
+ "pins": [
+ {
+ "package": "Alamofire",
+ "repositoryURL": "https://github.com/Alamofire/Alamofire.git",
+ "state": {
+ "branch": null,
+ "revision": "747c8db8d57b68d5e35275f10c92d55f982adbd4",
+ "version": "4.9.1"
+ }
+ }
+ ]
+ },
+ "version": 1
+}
diff --git a/Package.swift b/Package.swift
index 825669c..d2a5ace 100644
--- a/Package.swift
+++ b/Package.swift
@@ -4,28 +4,27 @@
import PackageDescription
let package = Package(
- name: "PhotographyKit",
+ name: "AtlasKit",
platforms: [
.iOS(.v11),
],
products: [
// Products define the executables and libraries produced by a package, and make them visible to other packages.
.library(
- name: "PhotographyKit",
- targets: ["PhotographyKit"]),
+ name: "AtlasKit",
+ targets: ["AtlasKit"]),
],
dependencies: [
- // Dependencies declare other packages that this package depends on.
- // .package(url: /* package url */, from: "1.0.0"),
+ .package(url: "https://github.com/Alamofire/Alamofire.git", from: "4.9.1"),
],
targets: [
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
// Targets can depend on other targets in this package, and on products in packages which this package depends on.
.target(
- name: "PhotographyKit",
+ name: "AtlasKit",
dependencies: []),
.testTarget(
- name: "PhotographyKitTests",
- dependencies: ["PhotographyKit"]),
+ name: "AtlasKitTests",
+ dependencies: ["AtlasKit"]),
]
)