AppDelegate.h 439 B

1234567891011121314151617181920
  1. //
  2. // AppDelegate.h
  3. // NatureDemo
  4. //
  5. // Created by SAGESSE on 2019/1/20.
  6. // Copyright © 2019 SAGESSE. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import <Adjust/Adjust.h>
  10. #import <FirebaseCore/FirebaseCore.h>
  11. #import <FirebaseAnalytics/FirebaseAnalytics.h>
  12. #import <FBSDKCoreKit/FBSDKCoreKit.h>
  13. @interface AppDelegate : UIResponder <UIApplicationDelegate,AdjustDelegate>
  14. @property (strong, nonatomic) UIWindow *window;
  15. @end