1 // Copyright 2015-present 650 Industries. All rights reserved. 2 3 #import "EXAbstractLoader.h" 4 5 @class EXManifestAndAssetRequestHeaders; 6 7 NS_ASSUME_NONNULL_BEGIN 8 9 FOUNDATION_EXPORT NSString *kEXHomeBundleResourceName; 10 11 /** 12 Subclass of EXAbstractLoader, specifically for loading the embedded home app bundle and manifest in production. 13 */ 14 @interface EXEmbeddedHomeLoader : EXAbstractLoader 15 16 - (instancetype)init NS_DESIGNATED_INITIALIZER; 17 - (instancetype)initWithManifestUrl:(NSURL *)url NS_UNAVAILABLE; 18 - (instancetype)initWithLocalManifest:(EXManifestsManifest *)manifest NS_UNAVAILABLE; 19 20 @end 21 22 NS_ASSUME_NONNULL_END 23