Installing UIKit
Go to Xcode and create a project for iOS.
- 1.Enter a project name
- 2.Select Swift as your language option

AmityUIKit
supports installation via dependency managers.- SwiftPM
- Cocoapods
- Carthage
To integrate AmityUIKit into your project via SwiftPM, please follow the instruction below.
Enter the repository URL to search the package, and choose to install
AmityUIKit
.https://github.com/AmityCo/Amity-Social-Cloud-UIKit-iOS-SwiftPM
Carthage is a decentralized dependency manager that builds your dependencies and provides you with binary frameworks. To integrate the Amity Social UIKit. First, add the following to your
Cartfile
.binary "https://raw.githubusercontent.com/AmityCo/Amity-Social-Cloud-UIKit-iOS/main/AmityUIKit.json" ~> 2.0
Now you can install Amity Social UIKit into your project by running the following command.
$ carthage update
If you are using CocoaPods to integrate Amity Social UIKit into your Xcode project. First, open a terminal and run this command to create
Podfile
.$ pod init
Then, add the following lines to the
Podfile
source "https://github.com/AmityCo/Amity-Social-Cloud-UIKit-iOS.git"
target 'SampleApp' do
use_frameworks!
pod 'AmityUIKit'
end
Now you can install Amity Social UIKit into your project.
$ pod install
If problems happen during
pod install
step. Please try clean Cocoapods cache before running pod install
again.To clear cache please go to
~/Library/Caches/Cocoapods
and remove all folders.After finished installing SDK. You will be able to import
AmityUIKit
.import AmityUIKit
AmityUIKit already includes our SDK. Don’t install AmitySDK separately if you have already installed the UIKit.
Last modified 3mo ago