1// Copyright 2015-present 650 Industries. All rights reserved.
2
3#import "EXFileSystemManager.h"
4
5// Nothing should ever call these functions in standalone scenario.
6// This class is used only in SDKs < 29. In new SDKs, consumers
7// don't rely on FS kernel service, but rather on universal modules.
8// Older SDKs aren't built with new kernel, so this class is only used
9// in Expo Client for old SDKs. This is why the implementation just returns
10// empty values — in Expo Client these values are always nil.
11
12@implementation EXFileSystemManager
13
14- (NSString *)bundleDirectoryForExperienceId:(NSString *)experienceId
15{
16  return nil;
17}
18
19- (NSArray<NSString *> *)bundledAssetsForExperienceId:(NSString *)experienceId
20{
21  return nil;
22}
23
24@end
25