├── .buckconfig ├── .gitattributes ├── .gitignore ├── App.js ├── README.md ├── __tests__ └── App.js ├── android ├── app │ ├── BUCK │ ├── build.gradle │ ├── build_defs.bzl │ ├── optimizeAsyncJs.sh │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── multibundle │ │ │ ├── ChunkLoaderModule.java │ │ │ ├── MainActivity.java │ │ │ ├── MainApplication.java │ │ │ └── MyPackage.java │ │ └── res │ │ ├── drawable │ │ ├── splashscreen.xml │ │ └── splashscreen_image.png │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── app.json ├── babel.config.js ├── index.js ├── ios ├── Podfile ├── multibundle.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── multibundle.xcscheme └── multibundle │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ └── LaunchScreen.xib │ ├── Images.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ └── SplashScreen.imageset │ │ ├── Contents.json │ │ └── splashscreen.png │ ├── Info.plist │ ├── SplashScreen.storyboard │ ├── Supporting │ └── Expo.plist │ └── main.m ├── metro.config.js ├── modulePathHashFunction.js ├── package.json ├── pages ├── base │ └── index.js └── home │ └── index.js ├── printCurrentDate.js ├── runBundle.js ├── test.js └── yarn.lock /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajeshBatth/hermes-multibundle/HEAD/.buckconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajeshBatth/hermes-multibundle/HEAD/.gitignore -------------------------------------------------------------------------------- /App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajeshBatth/hermes-multibundle/HEAD/App.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajeshBatth/hermes-multibundle/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajeshBatth/hermes-multibundle/HEAD/__tests__/App.js -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajeshBatth/hermes-multibundle/HEAD/android/app/BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajeshBatth/hermes-multibundle/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajeshBatth/hermes-multibundle/HEAD/android/app/build_defs.bzl -------------------------------------------------------------------------------- /android/app/optimizeAsyncJs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajeshBatth/hermes-multibundle/HEAD/android/app/optimizeAsyncJs.sh -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajeshBatth/hermes-multibundle/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajeshBatth/hermes-multibundle/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajeshBatth/hermes-multibundle/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/com/multibundle/ChunkLoaderModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajeshBatth/hermes-multibundle/HEAD/android/app/src/main/java/com/multibundle/ChunkLoaderModule.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/multibundle/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajeshBatth/hermes-multibundle/HEAD/android/app/src/main/java/com/multibundle/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/multibundle/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajeshBatth/hermes-multibundle/HEAD/android/app/src/main/java/com/multibundle/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/multibundle/MyPackage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajeshBatth/hermes-multibundle/HEAD/android/app/src/main/java/com/multibundle/MyPackage.java -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/splashscreen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajeshBatth/hermes-multibundle/HEAD/android/app/src/main/res/drawable/splashscreen.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/splashscreen_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajeshBatth/hermes-multibundle/HEAD/android/app/src/main/res/drawable/splashscreen_image.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajeshBatth/hermes-multibundle/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajeshBatth/hermes-multibundle/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajeshBatth/hermes-multibundle/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajeshBatth/hermes-multibundle/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajeshBatth/hermes-multibundle/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajeshBatth/hermes-multibundle/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajeshBatth/hermes-multibundle/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajeshBatth/hermes-multibundle/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajeshBatth/hermes-multibundle/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajeshBatth/hermes-multibundle/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajeshBatth/hermes-multibundle/HEAD/android/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajeshBatth/hermes-multibundle/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajeshBatth/hermes-multibundle/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajeshBatth/hermes-multibundle/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajeshBatth/hermes-multibundle/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajeshBatth/hermes-multibundle/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajeshBatth/hermes-multibundle/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajeshBatth/hermes-multibundle/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajeshBatth/hermes-multibundle/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajeshBatth/hermes-multibundle/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajeshBatth/hermes-multibundle/HEAD/app.json -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajeshBatth/hermes-multibundle/HEAD/babel.config.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajeshBatth/hermes-multibundle/HEAD/index.js -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajeshBatth/hermes-multibundle/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/multibundle.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajeshBatth/hermes-multibundle/HEAD/ios/multibundle.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/multibundle.xcodeproj/xcshareddata/xcschemes/multibundle.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajeshBatth/hermes-multibundle/HEAD/ios/multibundle.xcodeproj/xcshareddata/xcschemes/multibundle.xcscheme -------------------------------------------------------------------------------- /ios/multibundle/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajeshBatth/hermes-multibundle/HEAD/ios/multibundle/AppDelegate.h -------------------------------------------------------------------------------- /ios/multibundle/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajeshBatth/hermes-multibundle/HEAD/ios/multibundle/AppDelegate.m -------------------------------------------------------------------------------- /ios/multibundle/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajeshBatth/hermes-multibundle/HEAD/ios/multibundle/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ios/multibundle/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajeshBatth/hermes-multibundle/HEAD/ios/multibundle/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/multibundle/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajeshBatth/hermes-multibundle/HEAD/ios/multibundle/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/multibundle/Images.xcassets/SplashScreen.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajeshBatth/hermes-multibundle/HEAD/ios/multibundle/Images.xcassets/SplashScreen.imageset/Contents.json -------------------------------------------------------------------------------- /ios/multibundle/Images.xcassets/SplashScreen.imageset/splashscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajeshBatth/hermes-multibundle/HEAD/ios/multibundle/Images.xcassets/SplashScreen.imageset/splashscreen.png -------------------------------------------------------------------------------- /ios/multibundle/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajeshBatth/hermes-multibundle/HEAD/ios/multibundle/Info.plist -------------------------------------------------------------------------------- /ios/multibundle/SplashScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajeshBatth/hermes-multibundle/HEAD/ios/multibundle/SplashScreen.storyboard -------------------------------------------------------------------------------- /ios/multibundle/Supporting/Expo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajeshBatth/hermes-multibundle/HEAD/ios/multibundle/Supporting/Expo.plist -------------------------------------------------------------------------------- /ios/multibundle/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajeshBatth/hermes-multibundle/HEAD/ios/multibundle/main.m -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajeshBatth/hermes-multibundle/HEAD/metro.config.js -------------------------------------------------------------------------------- /modulePathHashFunction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajeshBatth/hermes-multibundle/HEAD/modulePathHashFunction.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajeshBatth/hermes-multibundle/HEAD/package.json -------------------------------------------------------------------------------- /pages/base/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajeshBatth/hermes-multibundle/HEAD/pages/base/index.js -------------------------------------------------------------------------------- /pages/home/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajeshBatth/hermes-multibundle/HEAD/pages/home/index.js -------------------------------------------------------------------------------- /printCurrentDate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajeshBatth/hermes-multibundle/HEAD/printCurrentDate.js -------------------------------------------------------------------------------- /runBundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajeshBatth/hermes-multibundle/HEAD/runBundle.js -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajeshBatth/hermes-multibundle/HEAD/test.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajeshBatth/hermes-multibundle/HEAD/yarn.lock --------------------------------------------------------------------------------