Skip to content

Instantly share code, notes, and snippets.

@shiningabdul
Created January 9, 2018 05:14
Show Gist options
  • Save shiningabdul/21eb9a85e1c92e86e333600d8bad531d to your computer and use it in GitHub Desktop.
Save shiningabdul/21eb9a85e1c92e86e333600d8bad531d to your computer and use it in GitHub Desktop.
import UIKit
import Stripe
@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {
var window: UIWindow?
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {
// Override point for customization after application launch.
Stripe.setDefaultPublishableKey("YOUR PUBLISHABLE KEY.")
return true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment