diff --git a/modules/hls-downloader/expo-module.config.json b/modules/hls-downloader/expo-module.config.json index 29ef69a9..2e70a5e9 100644 --- a/modules/hls-downloader/expo-module.config.json +++ b/modules/hls-downloader/expo-module.config.json @@ -1,5 +1,5 @@ { - "platforms": ["apple"], + "platforms": ["ios"], "apple": { "modules": ["HlsDownloaderModule"] }, diff --git a/modules/hls-downloader/src/.HlsDownloaderModule.ts.swp b/modules/hls-downloader/src/.HlsDownloaderModule.ts.swp deleted file mode 100644 index 56db47c9..00000000 Binary files a/modules/hls-downloader/src/.HlsDownloaderModule.ts.swp and /dev/null differ diff --git a/modules/hls-downloader/src/HlsDownloaderModule.ts b/modules/hls-downloader/src/HlsDownloaderModule.ts index 7818aa1a..645eda7e 100644 --- a/modules/hls-downloader/src/HlsDownloaderModule.ts +++ b/modules/hls-downloader/src/HlsDownloaderModule.ts @@ -1,3 +1,5 @@ import { requireNativeModule } from "expo-modules-core"; +// It loads the native module object from the JSI or falls back to +// the bridge module (from NativeModulesProxy) if the remote debugger is on. export default requireNativeModule("HlsDownloader");