Stipop SDK powers over 270,000 stickers(+animated) that can be integrated to chat, camera, video call, and profile interfaces. Get access to world's no.1 sticker platform and boost user engagement.
- Xcode >= 12.3
- Carthage >= 0.37.0
- Swift 5
github "stipop-development/Stipop-SDK-iOS" ~> 0.0.1
Paste this code to Cartfile and run
carthage update --use-xcframeworks --platform iOS
Cocoapods will be available soon.
Sign up on Stipop Dashboard for free and create your application to get unique API key. If you have any questions, please contact us.
To start developing, you should sign up on Stipop Dashboard and generate your own API Key. Then paste it at AppDelegate.swift like this.
import UIKit
import STIPOP
@main
class AppDelegate: UIResponder, UIApplicationDelegate {
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
STIPOP.setup(apiKey: "your_own_api_key", needLogDebug: true)
return true
}
}After that, You can import STIPOP successfully on your XCode Project.
import STIPOPYou can see more on what endpoint features are provided through the SDK on Stipop Docs. You can also find guide to api key generation, quick start guide, guide to UI kit on Docs as well.