We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Before you start using the Flutterwave iOS SDK, ensure you have the following prerequisites in place:
Podfile
pod 'FlutterwaveSDK'
pod install
github "Flutterwave/iOS-v3"
carthage update
Before you can start using the SDK, you need to initialize it with your API keys. Here's how you can do it in your Swift code:
import FlutterwaveSDK let config = FlutterwaveConfig() config.publicKey = "[YOUR_PUBLIC_KEY]" config.encryptionKey = "[YOUR_ENCRYPTION_KEY]"
You can access your public key and encryption key on the Flutterwave Dashboard here.
If you require more detailed instructions or information, please refer to the relevant sections in our comprehensive documentation.
The SDK also includes an 'Examples' folder that you can explore to help you get up to speed.