//
//  InMobiCommonUtils.h
//
//  Created by Anil Bakhla on 30/09/21.
//  Copyright © 2021 InMobi. All rights reserved.
//


#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>

#define IS_THIS_MAIN_THREAD [NSThread currentThread].isMainThread


@interface InMobiCommonUtils : NSObject

#pragma mark - UIWindow/UIView related methods
+(NSDictionary*)getSafeAreaInsets;
+(UIWindow*)getKeyWindow;

@end