This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Firebase | |
... | |
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool { | |
... | |
FirebaseApp.configure() | |
if !UserDefaults.standard.bool(forKey: "launchedBefore") | |
{ | |
UserDefaults.standard.set(true, forKey: "launchedBefore") | |
GoogleAdsACService.app.adToAction(processAction: processActionExample) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Adding support for common error status codes like 404, 403 to the responseJson serializer in Alamofire. | |
// | |
// AlamofireAuto.swift | |
// Speedy | |
// | |
// Created by Grant Kemp on 12/02/2017. | |
// Copyright © 2017 Grant Kemp. All rights reserved. | |
// |