How to use the expo-file-system.bundledAssets function in expo-file-system

To help you get started, we’ve selected a few expo-file-system examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github expo / expo / packages / expo-asset / src / EmbeddedAssets.ts View on Github external
import Constants from 'expo-constants';
import * as FileSystem from 'expo-file-system';

// Fast lookup check if assets are available in the local bundle
const bundledAssets = new Set(FileSystem.bundledAssets || []);

/**
 * Returns the local URI of an embedded asset from its hash and type, or null if the asset is not
 * included in the app bundle.
 */
export function getEmbeddedAssetUri(hash: string, type: string | null): string | null {
  const assetName = `asset_${hash}${type ? `.${type}` : ''}`;
  if (__DEV__ || Constants.appOwnership !== 'standalone' || !bundledAssets.has(assetName)) {
    return null;
  }
  return `${FileSystem.bundleDirectory}${assetName}`;
}
github expo / expo / packages / expo-asset / build / EmbeddedAssets.js View on Github external
import Constants from 'expo-constants';
import * as FileSystem from 'expo-file-system';
// Fast lookup check if assets are available in the local bundle
const bundledAssets = new Set(FileSystem.bundledAssets || []);
/**
 * Returns the local URI of an embedded asset from its hash and type, or null if the asset is not
 * included in the app bundle.
 */
export function getEmbeddedAssetUri(hash, type) {
    const assetName = `asset_${hash}${type ? `.${type}` : ''}`;
    if (__DEV__ || Constants.appOwnership !== 'standalone' || !bundledAssets.has(assetName)) {
        return null;
    }
    return `${FileSystem.bundleDirectory}${assetName}`;
}
//# sourceMappingURL=EmbeddedAssets.js.map