0.0.5 • Published 6 months ago

@hot-updater/react-native v0.0.5

Weekly downloads
-
License
MIT
Repository
github
Last release
6 months ago

hot-updater (WIP)

React Native OTA solution for internal infrastructure

Usage

  • as-is
// filename: ios/MyApp/AppDelegate.mm
// ...
#import <HotUpdater/HotUpdater.h>

// ...

- (NSURL *)sourceURLForBridge:(RCTBridge *)bridge
{
    #if DEBUG
      return [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index"];
    #else
      return [[NSBundle mainBundle] URLForResource:@"main" withExtension:@"jsbundle"];
    #endif
}

// ...
  • to-be
// filename: ios/MyApp/AppDelegate.mm
// ...

- (NSURL *)sourceURLForBridge:(RCTBridge *)bridge
{
    return [HotUpdater bundleURL];
}

// ...
0.0.5

6 months ago

0.0.4

6 months ago

0.0.3

6 months ago

0.0.2

6 months ago

0.0.1

7 months ago