├── .gitignore ├── Bu1.js ├── Bu2.js ├── IOS.js ├── IOS2.js ├── README.md ├── RNDemo.js ├── ServiceHot ├── SERVER_HOT ├── bundleFile │ ├── 1.0.0-Staging-index.android.bundle │ ├── 1.0.2-Staging-index.android.bundle │ └── v1.0.0-bu1.android.bundle ├── index.js └── public │ ├── 1.0.0-Staging-index.android.bundle.zip │ ├── 1.0.2-Staging-index.android.bundle.zip │ ├── console │ ├── index.css │ ├── index.html │ ├── index.js │ └── prejs │ │ ├── axios.js │ │ ├── bable.js │ │ ├── react.dom.js │ │ └── react.js │ └── v1.0.0-bu1.android.bundle.zip ├── android ├── app │ ├── .gitignore │ ├── build.gradle │ ├── my-release-key.keystore │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── myapprnn │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ │ ├── bu1.android.bundle │ │ │ ├── bu11.android.bundle │ │ │ ├── bu2.android.bundle │ │ │ ├── bundleJsAndAssets │ │ │ │ └── index.android.bundle │ │ │ ├── common.android 2.bundle │ │ │ ├── common.android.bundle │ │ │ ├── index.android 2.bundle │ │ │ ├── index.android.bundle │ │ │ ├── read.txt │ │ │ └── rn.android.bundle │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── myapprnn │ │ │ │ ├── Bu1Activity.java │ │ │ │ ├── Bu2Activity.java │ │ │ │ ├── MainActivity.java │ │ │ │ ├── MainApplication.java │ │ │ │ ├── PreBaseInit.java │ │ │ │ ├── RNToolPackage.java │ │ │ │ └── RNToolsManager.java │ │ └── res │ │ │ ├── drawable-mdpi │ │ │ ├── src_assets_imgs_bigimage.png │ │ │ ├── src_assets_imgs_default.png │ │ │ ├── src_assets_imgs_test.png │ │ │ ├── src_modules_business1_assets_img_1024_500.png │ │ │ └── src_modules_main_assets_img_test.png │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable-xhdpi │ │ │ └── src_assets_imgs_default.png │ │ │ ├── drawable-xxhdpi │ │ │ └── src_assets_imgs_default.png │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ ├── activity_bu1.xml │ │ │ ├── activity_bu2.xml │ │ │ └── activity_main.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ ├── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ │ └── xml │ │ │ ├── backup_rules.xml │ │ │ └── data_extraction_rules.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── myapprnn │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── app.json ├── base.js ├── bundle ├── IOS.ios.bundle ├── IOS2.ios.bundle ├── assets │ └── src │ │ └── modules │ │ └── Business1 │ │ └── assets │ │ └── img │ │ └── 1024_500.png └── common.ios.bundle ├── cacheFile.json ├── common.js ├── common ├── hooks │ └── useServerHot.js ├── index.js ├── native │ └── index.js └── utils │ ├── index.js │ ├── navigation.js │ └── storage.js ├── config ├── ModuleIdConfig.json ├── bundleBuInfo.json ├── bundleCommonInfo.json ├── getModuleIdByIndex.json ├── platformMap.json ├── platformNameMap.json └── versionMap.json ├── doc ├── SERVER_HOT.md └── ServiceHot设计.drawio ├── index.js ├── ios ├── Podfile ├── Podfile.lock ├── myrnapp.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── myrnapp.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── myrnapp │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ ├── RNToolPackage.h │ ├── RNToolPackage.m │ ├── ReactController.m │ ├── SceneDelegate.h │ ├── SceneDelegate.m │ ├── ViewController.h │ ├── ViewController.m │ ├── main.m │ └── myrnapp.xcdatamodeld │ │ ├── .xccurrentversion │ │ └── myrnapp.xcdatamodel │ │ └── contents ├── myrnappTests │ ├── Info.plist │ └── myrnappTests.m └── myrnappUITests │ ├── Info.plist │ └── myrnappUITests.m ├── metro.base.config.js ├── metro.common.config.js ├── metro.main.config.js ├── package.json ├── src ├── assets │ └── imgs │ │ ├── bigImage.png │ │ ├── default.png │ │ ├── default@2x.png │ │ ├── default@3x.png │ │ └── test.png └── modules │ ├── Business1 │ ├── assets │ │ └── img │ │ │ ├── 1024_500.png │ │ │ └── test.png │ └── index.js │ ├── Business2 │ └── index.js │ ├── Frame.js │ └── Main │ ├── TestNativeInfo.js │ ├── assets │ └── img │ │ └── test.png │ ├── index.js │ └── package.config.js ├── test └── index.md ├── utils.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/.gitignore -------------------------------------------------------------------------------- /Bu1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/Bu1.js -------------------------------------------------------------------------------- /Bu2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/Bu2.js -------------------------------------------------------------------------------- /IOS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/IOS.js -------------------------------------------------------------------------------- /IOS2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/IOS2.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/README.md -------------------------------------------------------------------------------- /RNDemo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/RNDemo.js -------------------------------------------------------------------------------- /ServiceHot/SERVER_HOT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/ServiceHot/SERVER_HOT -------------------------------------------------------------------------------- /ServiceHot/bundleFile/1.0.0-Staging-index.android.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/ServiceHot/bundleFile/1.0.0-Staging-index.android.bundle -------------------------------------------------------------------------------- /ServiceHot/bundleFile/1.0.2-Staging-index.android.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/ServiceHot/bundleFile/1.0.2-Staging-index.android.bundle -------------------------------------------------------------------------------- /ServiceHot/bundleFile/v1.0.0-bu1.android.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/ServiceHot/bundleFile/v1.0.0-bu1.android.bundle -------------------------------------------------------------------------------- /ServiceHot/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/ServiceHot/index.js -------------------------------------------------------------------------------- /ServiceHot/public/1.0.0-Staging-index.android.bundle.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/ServiceHot/public/1.0.0-Staging-index.android.bundle.zip -------------------------------------------------------------------------------- /ServiceHot/public/1.0.2-Staging-index.android.bundle.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/ServiceHot/public/1.0.2-Staging-index.android.bundle.zip -------------------------------------------------------------------------------- /ServiceHot/public/console/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/ServiceHot/public/console/index.css -------------------------------------------------------------------------------- /ServiceHot/public/console/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/ServiceHot/public/console/index.html -------------------------------------------------------------------------------- /ServiceHot/public/console/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/ServiceHot/public/console/index.js -------------------------------------------------------------------------------- /ServiceHot/public/console/prejs/axios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/ServiceHot/public/console/prejs/axios.js -------------------------------------------------------------------------------- /ServiceHot/public/console/prejs/bable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/ServiceHot/public/console/prejs/bable.js -------------------------------------------------------------------------------- /ServiceHot/public/console/prejs/react.dom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/ServiceHot/public/console/prejs/react.dom.js -------------------------------------------------------------------------------- /ServiceHot/public/console/prejs/react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/ServiceHot/public/console/prejs/react.js -------------------------------------------------------------------------------- /ServiceHot/public/v1.0.0-bu1.android.bundle.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/ServiceHot/public/v1.0.0-bu1.android.bundle.zip -------------------------------------------------------------------------------- /android/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/my-release-key.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/android/app/my-release-key.keystore -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/androidTest/java/com/example/myapprnn/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/android/app/src/androidTest/java/com/example/myapprnn/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/assets/bu1.android.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/android/app/src/main/assets/bu1.android.bundle -------------------------------------------------------------------------------- /android/app/src/main/assets/bu11.android.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/android/app/src/main/assets/bu11.android.bundle -------------------------------------------------------------------------------- /android/app/src/main/assets/bu2.android.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/android/app/src/main/assets/bu2.android.bundle -------------------------------------------------------------------------------- /android/app/src/main/assets/bundleJsAndAssets/index.android.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/android/app/src/main/assets/bundleJsAndAssets/index.android.bundle -------------------------------------------------------------------------------- /android/app/src/main/assets/common.android 2.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/android/app/src/main/assets/common.android 2.bundle -------------------------------------------------------------------------------- /android/app/src/main/assets/common.android.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/android/app/src/main/assets/common.android.bundle -------------------------------------------------------------------------------- /android/app/src/main/assets/index.android 2.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/android/app/src/main/assets/index.android 2.bundle -------------------------------------------------------------------------------- /android/app/src/main/assets/index.android.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/android/app/src/main/assets/index.android.bundle -------------------------------------------------------------------------------- /android/app/src/main/assets/read.txt: -------------------------------------------------------------------------------- 1 | KL -------------------------------------------------------------------------------- /android/app/src/main/assets/rn.android.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/android/app/src/main/assets/rn.android.bundle -------------------------------------------------------------------------------- /android/app/src/main/java/com/example/myapprnn/Bu1Activity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/android/app/src/main/java/com/example/myapprnn/Bu1Activity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/example/myapprnn/Bu2Activity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/android/app/src/main/java/com/example/myapprnn/Bu2Activity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/example/myapprnn/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/android/app/src/main/java/com/example/myapprnn/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/example/myapprnn/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/android/app/src/main/java/com/example/myapprnn/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/example/myapprnn/PreBaseInit.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/android/app/src/main/java/com/example/myapprnn/PreBaseInit.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/example/myapprnn/RNToolPackage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/android/app/src/main/java/com/example/myapprnn/RNToolPackage.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/example/myapprnn/RNToolsManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/android/app/src/main/java/com/example/myapprnn/RNToolsManager.java -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/src_assets_imgs_bigimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/android/app/src/main/res/drawable-mdpi/src_assets_imgs_bigimage.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/src_assets_imgs_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/android/app/src/main/res/drawable-mdpi/src_assets_imgs_default.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/src_assets_imgs_test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/android/app/src/main/res/drawable-mdpi/src_assets_imgs_test.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/src_modules_business1_assets_img_1024_500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/android/app/src/main/res/drawable-mdpi/src_modules_business1_assets_img_1024_500.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/src_modules_main_assets_img_test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/android/app/src/main/res/drawable-mdpi/src_modules_main_assets_img_test.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/android/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xhdpi/src_assets_imgs_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/android/app/src/main/res/drawable-xhdpi/src_assets_imgs_default.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/src_assets_imgs_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/android/app/src/main/res/drawable-xxhdpi/src_assets_imgs_default.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/android/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/layout/activity_bu1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/android/app/src/main/res/layout/activity_bu1.xml -------------------------------------------------------------------------------- /android/app/src/main/res/layout/activity_bu2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/android/app/src/main/res/layout/activity_bu2.xml -------------------------------------------------------------------------------- /android/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/android/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /android/app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/android/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/android/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/android/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /android/app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/android/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /android/app/src/main/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/android/app/src/main/res/xml/data_extraction_rules.xml -------------------------------------------------------------------------------- /android/app/src/test/java/com/example/myapprnn/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/android/app/src/test/java/com/example/myapprnn/ExampleUnitTest.java -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/app.json -------------------------------------------------------------------------------- /base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/base.js -------------------------------------------------------------------------------- /bundle/IOS.ios.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/bundle/IOS.ios.bundle -------------------------------------------------------------------------------- /bundle/IOS2.ios.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/bundle/IOS2.ios.bundle -------------------------------------------------------------------------------- /bundle/assets/src/modules/Business1/assets/img/1024_500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/bundle/assets/src/modules/Business1/assets/img/1024_500.png -------------------------------------------------------------------------------- /bundle/common.ios.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/bundle/common.ios.bundle -------------------------------------------------------------------------------- /cacheFile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/cacheFile.json -------------------------------------------------------------------------------- /common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/common.js -------------------------------------------------------------------------------- /common/hooks/useServerHot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/common/hooks/useServerHot.js -------------------------------------------------------------------------------- /common/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/common/index.js -------------------------------------------------------------------------------- /common/native/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/common/native/index.js -------------------------------------------------------------------------------- /common/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/common/utils/index.js -------------------------------------------------------------------------------- /common/utils/navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/common/utils/navigation.js -------------------------------------------------------------------------------- /common/utils/storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/common/utils/storage.js -------------------------------------------------------------------------------- /config/ModuleIdConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/config/ModuleIdConfig.json -------------------------------------------------------------------------------- /config/bundleBuInfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/config/bundleBuInfo.json -------------------------------------------------------------------------------- /config/bundleCommonInfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/config/bundleCommonInfo.json -------------------------------------------------------------------------------- /config/getModuleIdByIndex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/config/getModuleIdByIndex.json -------------------------------------------------------------------------------- /config/platformMap.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/platformNameMap.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/versionMap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/config/versionMap.json -------------------------------------------------------------------------------- /doc/SERVER_HOT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/doc/SERVER_HOT.md -------------------------------------------------------------------------------- /doc/ServiceHot设计.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/doc/ServiceHot设计.drawio -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/index.js -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /ios/myrnapp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/ios/myrnapp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/myrnapp.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/ios/myrnapp.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/myrnapp.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/ios/myrnapp.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/myrnapp.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/ios/myrnapp.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/myrnapp.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/ios/myrnapp.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/myrnapp/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/ios/myrnapp/AppDelegate.h -------------------------------------------------------------------------------- /ios/myrnapp/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/ios/myrnapp/AppDelegate.m -------------------------------------------------------------------------------- /ios/myrnapp/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/ios/myrnapp/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /ios/myrnapp/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/ios/myrnapp/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/myrnapp/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/ios/myrnapp/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/myrnapp/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/ios/myrnapp/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/myrnapp/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/ios/myrnapp/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ios/myrnapp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/ios/myrnapp/Info.plist -------------------------------------------------------------------------------- /ios/myrnapp/RNToolPackage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/ios/myrnapp/RNToolPackage.h -------------------------------------------------------------------------------- /ios/myrnapp/RNToolPackage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/ios/myrnapp/RNToolPackage.m -------------------------------------------------------------------------------- /ios/myrnapp/ReactController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/ios/myrnapp/ReactController.m -------------------------------------------------------------------------------- /ios/myrnapp/SceneDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/ios/myrnapp/SceneDelegate.h -------------------------------------------------------------------------------- /ios/myrnapp/SceneDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/ios/myrnapp/SceneDelegate.m -------------------------------------------------------------------------------- /ios/myrnapp/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/ios/myrnapp/ViewController.h -------------------------------------------------------------------------------- /ios/myrnapp/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/ios/myrnapp/ViewController.m -------------------------------------------------------------------------------- /ios/myrnapp/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/ios/myrnapp/main.m -------------------------------------------------------------------------------- /ios/myrnapp/myrnapp.xcdatamodeld/.xccurrentversion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/ios/myrnapp/myrnapp.xcdatamodeld/.xccurrentversion -------------------------------------------------------------------------------- /ios/myrnapp/myrnapp.xcdatamodeld/myrnapp.xcdatamodel/contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/ios/myrnapp/myrnapp.xcdatamodeld/myrnapp.xcdatamodel/contents -------------------------------------------------------------------------------- /ios/myrnappTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/ios/myrnappTests/Info.plist -------------------------------------------------------------------------------- /ios/myrnappTests/myrnappTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/ios/myrnappTests/myrnappTests.m -------------------------------------------------------------------------------- /ios/myrnappUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/ios/myrnappUITests/Info.plist -------------------------------------------------------------------------------- /ios/myrnappUITests/myrnappUITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/ios/myrnappUITests/myrnappUITests.m -------------------------------------------------------------------------------- /metro.base.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/metro.base.config.js -------------------------------------------------------------------------------- /metro.common.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/metro.common.config.js -------------------------------------------------------------------------------- /metro.main.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/metro.main.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/package.json -------------------------------------------------------------------------------- /src/assets/imgs/bigImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/src/assets/imgs/bigImage.png -------------------------------------------------------------------------------- /src/assets/imgs/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/src/assets/imgs/default.png -------------------------------------------------------------------------------- /src/assets/imgs/default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/src/assets/imgs/default@2x.png -------------------------------------------------------------------------------- /src/assets/imgs/default@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/src/assets/imgs/default@3x.png -------------------------------------------------------------------------------- /src/assets/imgs/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/src/assets/imgs/test.png -------------------------------------------------------------------------------- /src/modules/Business1/assets/img/1024_500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/src/modules/Business1/assets/img/1024_500.png -------------------------------------------------------------------------------- /src/modules/Business1/assets/img/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/src/modules/Business1/assets/img/test.png -------------------------------------------------------------------------------- /src/modules/Business1/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/src/modules/Business1/index.js -------------------------------------------------------------------------------- /src/modules/Business2/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/src/modules/Business2/index.js -------------------------------------------------------------------------------- /src/modules/Frame.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/src/modules/Frame.js -------------------------------------------------------------------------------- /src/modules/Main/TestNativeInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/src/modules/Main/TestNativeInfo.js -------------------------------------------------------------------------------- /src/modules/Main/assets/img/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/src/modules/Main/assets/img/test.png -------------------------------------------------------------------------------- /src/modules/Main/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/src/modules/Main/index.js -------------------------------------------------------------------------------- /src/modules/Main/package.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/src/modules/Main/package.config.js -------------------------------------------------------------------------------- /test/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/test/index.md -------------------------------------------------------------------------------- /utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/utils.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BM-laoli/Android-IOS-ReactNative/HEAD/yarn.lock --------------------------------------------------------------------------------