Skip to content

Commit 09a6de0

Browse files
committed
Initial commit
Signed-off-by: Jaemyeong Jin <jaemyeong@me.com>
0 parents  commit 09a6de0

File tree

43 files changed

+2067
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+2067
-0
lines changed

.gitignore

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
.DS_Store
2+
/.build
3+
/Packages
4+
xcuserdata/
5+
DerivedData/
6+
.swiftpm/configuration/registries.json
7+
.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata
8+
.netrc

LICENSE

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

Package.swift

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
// swift-tools-version: 5.9
2+
3+
import PackageDescription
4+
5+
let package = Package(
6+
name: "NaverThirdPartyLogin",
7+
products: [
8+
.library(
9+
name: "NaverThirdPartyLogin",
10+
targets: [
11+
"NaverThirdPartyLogin",
12+
]
13+
),
14+
],
15+
targets: [
16+
.binaryTarget(
17+
name: "NaverThirdPartyLogin",
18+
path: "Resources/NaverThirdPartyLogin/NaverThirdPartyLogin.xcframework"
19+
),
20+
]
21+
)

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# NaverThirdPartyLogin
2+
3+
## Overview
4+
5+
- [NAVER ID Login SDK for iOS](https://developers.naver.com/docs/login/ios/ios.md)
Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>AvailableLibraries</key>
6+
<array>
7+
<dict>
8+
<key>DebugSymbolsPath</key>
9+
<string>dSYMs</string>
10+
<key>LibraryIdentifier</key>
11+
<string>ios-arm64_x86_64-simulator</string>
12+
<key>LibraryPath</key>
13+
<string>NaverThirdPartyLogin.framework</string>
14+
<key>SupportedArchitectures</key>
15+
<array>
16+
<string>arm64</string>
17+
<string>x86_64</string>
18+
</array>
19+
<key>SupportedPlatform</key>
20+
<string>ios</string>
21+
<key>SupportedPlatformVariant</key>
22+
<string>simulator</string>
23+
</dict>
24+
<dict>
25+
<key>BitcodeSymbolMapsPath</key>
26+
<string>BCSymbolMaps</string>
27+
<key>DebugSymbolsPath</key>
28+
<string>dSYMs</string>
29+
<key>LibraryIdentifier</key>
30+
<string>ios-arm64</string>
31+
<key>LibraryPath</key>
32+
<string>NaverThirdPartyLogin.framework</string>
33+
<key>SupportedArchitectures</key>
34+
<array>
35+
<string>arm64</string>
36+
</array>
37+
<key>SupportedPlatform</key>
38+
<string>ios</string>
39+
</dict>
40+
</array>
41+
<key>CFBundlePackageType</key>
42+
<string>XFWK</string>
43+
<key>XCFrameworkFormatVersion</key>
44+
<string>1.0</string>
45+
</dict>
46+
</plist>

0 commit comments

Comments
 (0)