https://github.com/vkcom/vksdk-ios
https://github.com/vkcom/vksdk-ios
Last synced: 11 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/vkcom/vksdk-ios
- Owner: VKCOM
- License: other
- Created: 2022-10-11T11:23:41.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-06-26T11:46:57.000Z (almost 2 years ago)
- Last Synced: 2025-06-10T15:08:12.854Z (12 months ago)
- Language: Swift
- Size: 621 KB
- Stars: 10
- Watchers: 15
- Forks: 4
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# What is the VK SDK?
The VK SDK is a collection of libraries that will help:
- make any app a part of the VK ecosystem
- turn your app into a super app by integrating services into your app without having to put in any additional effort into development
The general module of the SDK is VK ID, a single platform for authentication and user registration in various VK ecosystem services.
For details, see [Documentation](https://platform.vk.com/docs/vkid/1.35.0/install-sdk/ios-v2).
## Installation
### Swift Package Manager
Add VK SDK as a dependency in your `Package.swift`:
```swift
dependencies: [
.package(url: "https://github.com/VKCOM/VKSDK-iOS.git", .upToNextMajor(from: "0.89.0"))
]
```
### CocoaPods
Specify in your `Podfile`:
```ruby
pod 'VK-SDK'
```
Run the following commands to install dependencies:
```shell
pod install --repo-update
```
### Carthage
Specify in your `Cartfile`:
```shell
binary "https://artifactory-external.vkpartner.ru/artifactory/VKSDK/VKSDK-Carthage.json"
```
Run the following commands to install dependencies:
```shell
carthage update --use-xcframeworks
```