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 AppsFlyerLib | |
| class AppDelegate: UIResponder, UIApplicationDelegate { | |
| func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool { | |
| AppsFlyerTracker.shared().appsFlyerDevKey = Keys.AppsFlyer.devKey | |
| AppsFlyerTracker.shared().appleAppID = Keys.Apple.appId | |
| AppsFlyerTracker.shared().appInviteOneLinkID = Keys.AppsFlyer.appInviteOnelinkId | |
| AppsFlyerTracker.shared().delegate = self | |
| AppsFlyerTracker.shared().isDebug = true |
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 UIKit | |
| class ChatInputView: UIInputView { | |
| @IBOutlet weak var textView: UITextView! | |
| @IBOutlet weak var sendButton: UIButton! | |
| @IBOutlet weak var helpButton: UIButton! | |
| @IBOutlet weak var placeholderLabel: UILabel! | |
| @IBOutlet weak var textViewHeightConstraint: NSLayoutConstraint! | |
| @IBOutlet weak var textViewBottomConstraint: NSLayoutConstraint! |