├── .github ├── CODEOWNERS ├── archive │ └── react-native-code-push-ci.yml ├── policies │ └── resourceManagement.yml └── workflows │ └── unit-test.yml ├── .gitignore ├── .vscode ├── launch.json ├── settings.json └── tasks.json ├── .watchmanconfig ├── CONTRIBUTING.md ├── CodePush.podspec ├── Examples ├── CodePushDemoApp │ ├── .bundle │ │ └── config │ ├── .eslintrc.js │ ├── .gitignore │ ├── .prettierrc.js │ ├── .watchmanconfig │ ├── App.tsx │ ├── Gemfile │ ├── Gemfile.lock │ ├── README.md │ ├── __tests__ │ │ └── App.test.tsx │ ├── android │ │ ├── app │ │ │ ├── build.gradle │ │ │ ├── debug.keystore │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── codepushdemoapp │ │ │ │ │ ├── MainActivity.kt │ │ │ │ │ └── MainApplication.kt │ │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ └── rn_edit_text_material.xml │ │ │ │ ├── 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 │ │ │ │ ├── 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 │ ├── code-push.config.example.firebase.ts │ ├── code-push.config.example.supabase.ts │ ├── code-push.config.ts │ ├── index.js │ ├── ios │ │ ├── .xcode.env │ │ ├── CodePushDemoApp-Bridging-Header.h │ │ ├── CodePushDemoApp.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── CodePushDemoApp.xcscheme │ │ ├── CodePushDemoApp.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ ├── CodePushDemoApp │ │ │ ├── AppDelegate.swift │ │ │ ├── Images.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ ├── Info.plist │ │ │ ├── LaunchScreen.storyboard │ │ │ └── PrivacyInfo.xcprivacy │ │ ├── Podfile │ │ └── Podfile.lock │ ├── jest.config.js │ ├── metro.config.js │ ├── package-lock.json │ ├── package.json │ ├── scripts │ │ ├── invalidateCloudfrontCache.ts │ │ └── uploadFileToS3.ts │ ├── tsconfig.json │ └── utils │ │ └── index.ts ├── create-app.js └── nexpect.js ├── LICENSE.md ├── README.md ├── Recipes ├── UpdateButton.ios.js └── UpdateOnStart.ios.js ├── SECURITY.md ├── android ├── app │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ └── main │ │ ├── AndroidManifest.xml │ │ └── java │ │ └── com │ │ └── microsoft │ │ └── codepush │ │ └── react │ │ ├── CodePush.java │ │ ├── CodePushConstants.java │ │ ├── CodePushDialog.java │ │ ├── CodePushInstallMode.java │ │ ├── CodePushInvalidPublicKeyException.java │ │ ├── CodePushInvalidUpdateException.java │ │ ├── CodePushMalformedDataException.java │ │ ├── CodePushNativeModule.java │ │ ├── CodePushNotInitializedException.java │ │ ├── CodePushTelemetryManager.java │ │ ├── CodePushUnknownException.java │ │ ├── CodePushUpdateManager.java │ │ ├── CodePushUpdateState.java │ │ ├── CodePushUpdateUtils.java │ │ ├── CodePushUtils.java │ │ ├── DownloadProgress.java │ │ ├── DownloadProgressCallback.java │ │ ├── FileUtils.java │ │ ├── SettingsManager.java │ │ └── TLSSocketFactory.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── app.plugin.js ├── babel-plugin-code-push ├── index.js ├── package-lock.json ├── package.json └── test │ ├── .babelrc.js │ ├── cases │ ├── test1-config │ ├── test1-input │ ├── test1-output │ ├── test2-config │ ├── test2-input │ └── test2-output │ ├── codepush.config.js │ └── plugin.test.js ├── babel.config.js ├── bin └── code-push.js ├── cli ├── commands │ ├── bundleCommand │ │ ├── bundleCodePush.ts │ │ └── index.ts │ ├── createHistoryCommand │ │ ├── createReleaseHistory.ts │ │ └── index.ts │ ├── initCommand │ │ ├── index.ts │ │ ├── initAndroid.ts │ │ ├── initIos.ts │ │ └── test │ │ │ ├── initAndroid.test.ts │ │ │ └── initIos.test.ts │ ├── releaseCommand │ │ ├── addToReleaseHistory.ts │ │ ├── index.ts │ │ └── release.ts │ ├── showHistoryCommand │ │ └── index.ts │ └── updateHistoryCommand │ │ ├── index.ts │ │ └── updateReleaseHistory.ts ├── constant.ts ├── functions │ ├── getReactTempDir.ts │ ├── makeCodePushBundle.ts │ ├── prepareToBundleJS.ts │ ├── runExpoBundleCommand.ts │ ├── runHermesEmitBinaryCommand.ts │ └── runReactNativeBundleCommand.ts ├── index.ts ├── jest.config.cjs ├── jest.resolver.cjs ├── package.json ├── tsconfig.json └── utils │ ├── file-utils.ts │ ├── fsUtils.ts │ ├── hash-utils.ts │ ├── promisfied-fs.ts │ ├── showLogo.ts │ ├── unzip.ts │ └── zip.ts ├── code-push-plugin-testing-framework ├── package.json ├── script │ ├── index.js │ ├── platform.js │ ├── projectManager.js │ ├── serverUtil.js │ ├── test.js │ ├── testBuilder.js │ ├── testConfig.js │ └── testUtil.js └── typings │ └── code-push-plugin-testing-framework.d.ts ├── docs ├── api-android.md ├── api-ios.md ├── api-js.md ├── multi-deployment-testing-android.md └── multi-deployment-testing-ios.md ├── eslint.config.mjs ├── expo └── plugin │ ├── __tests__ │ └── withCodePushAndroid.test.ts │ ├── withCodePush.js │ ├── withCodePushAndroid.js │ └── withCodePushIos.js ├── ios ├── CodePush.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── CodePush │ ├── Base64 │ │ ├── Base64 │ │ │ ├── MF_Base64Additions.h │ │ │ └── MF_Base64Additions.m │ │ └── README.md │ ├── CodePush.h │ ├── CodePush.m │ ├── CodePushConfig.m │ ├── CodePushDownloadHandler.m │ ├── CodePushErrorUtils.m │ ├── CodePushPackage.m │ ├── CodePushTelemetryManager.m │ ├── CodePushUpdateUtils.m │ ├── CodePushUtils.m │ ├── JWT │ │ ├── Core │ │ │ ├── Algorithms │ │ │ │ ├── Base │ │ │ │ │ ├── JWTAlgorithm.h │ │ │ │ │ ├── JWTAlgorithmFactory.h │ │ │ │ │ ├── JWTAlgorithmFactory.m │ │ │ │ │ ├── JWTAlgorithmNone.h │ │ │ │ │ └── JWTAlgorithmNone.m │ │ │ │ ├── ESFamily │ │ │ │ │ ├── JWTAlgorithmESBase.h │ │ │ │ │ └── JWTAlgorithmESBase.m │ │ │ │ ├── HSFamily │ │ │ │ │ ├── JWTAlgorithmHSBase.h │ │ │ │ │ └── JWTAlgorithmHSBase.m │ │ │ │ ├── Holders │ │ │ │ │ ├── JWTAlgorithmDataHolder.h │ │ │ │ │ ├── JWTAlgorithmDataHolder.m │ │ │ │ │ ├── JWTAlgorithmDataHolderChain.h │ │ │ │ │ └── JWTAlgorithmDataHolderChain.m │ │ │ │ └── RSFamily │ │ │ │ │ ├── JWTAlgorithmRSBase.h │ │ │ │ │ ├── JWTAlgorithmRSBase.m │ │ │ │ │ ├── JWTRSAlgorithm.h │ │ │ │ │ └── RSKeys │ │ │ │ │ ├── JWTCryptoKey.h │ │ │ │ │ ├── JWTCryptoKey.m │ │ │ │ │ ├── JWTCryptoKeyExtractor.h │ │ │ │ │ ├── JWTCryptoKeyExtractor.m │ │ │ │ │ ├── JWTCryptoSecurity.h │ │ │ │ │ └── JWTCryptoSecurity.m │ │ │ ├── ClaimSet │ │ │ │ ├── JWTClaim.h │ │ │ │ ├── JWTClaim.m │ │ │ │ ├── JWTClaimsSet.h │ │ │ │ ├── JWTClaimsSet.m │ │ │ │ ├── JWTClaimsSetSerializer.h │ │ │ │ ├── JWTClaimsSetSerializer.m │ │ │ │ ├── JWTClaimsSetVerifier.h │ │ │ │ └── JWTClaimsSetVerifier.m │ │ │ ├── Coding │ │ │ │ ├── JWTCoding+ResultTypes.h │ │ │ │ ├── JWTCoding+ResultTypes.m │ │ │ │ ├── JWTCoding+VersionOne.h │ │ │ │ ├── JWTCoding+VersionOne.m │ │ │ │ ├── JWTCoding+VersionThree.h │ │ │ │ ├── JWTCoding+VersionThree.m │ │ │ │ ├── JWTCoding+VersionTwo.h │ │ │ │ ├── JWTCoding+VersionTwo.m │ │ │ │ ├── JWTCoding.h │ │ │ │ └── JWTCoding.m │ │ │ ├── FrameworkSupplement │ │ │ │ ├── JWT.h │ │ │ │ └── Map.modulemap │ │ │ └── Supplement │ │ │ │ ├── JWTBase64Coder.h │ │ │ │ ├── JWTBase64Coder.m │ │ │ │ ├── JWTDeprecations.h │ │ │ │ ├── JWTErrorDescription.h │ │ │ │ └── JWTErrorDescription.m │ │ ├── LICENSE │ │ └── README.md │ ├── RCTConvert+CodePushInstallMode.m │ ├── RCTConvert+CodePushUpdateState.m │ └── SSZipArchive │ │ ├── Info.plist │ │ ├── README.md │ │ ├── SSZipArchive.h │ │ ├── SSZipArchive.m │ │ ├── SSZipCommon.h │ │ ├── Supporting Files │ │ └── PrivacyInfo.xcprivacy │ │ ├── include │ │ └── ZipArchive.h │ │ └── minizip │ │ ├── LICENSE │ │ ├── mz.h │ │ ├── mz_compat.c │ │ ├── mz_compat.h │ │ ├── mz_crypt.c │ │ ├── mz_crypt.h │ │ ├── mz_crypt_apple.c │ │ ├── mz_os.c │ │ ├── mz_os.h │ │ ├── mz_os_posix.c │ │ ├── mz_strm.c │ │ ├── mz_strm.h │ │ ├── mz_strm_buf.c │ │ ├── mz_strm_buf.h │ │ ├── mz_strm_mem.c │ │ ├── mz_strm_mem.h │ │ ├── mz_strm_os.h │ │ ├── mz_strm_os_posix.c │ │ ├── mz_strm_pkcrypt.c │ │ ├── mz_strm_pkcrypt.h │ │ ├── mz_strm_split.c │ │ ├── mz_strm_split.h │ │ ├── mz_strm_wzaes.c │ │ ├── mz_strm_wzaes.h │ │ ├── mz_strm_zlib.c │ │ ├── mz_strm_zlib.h │ │ ├── mz_zip.c │ │ ├── mz_zip.h │ │ ├── mz_zip_rw.c │ │ └── mz_zip_rw.h └── PrivacyInfo.xcprivacy ├── package.json ├── react-native.config.js ├── scripts ├── generateBundledResourcesHash.js ├── getFilesInFolder.js └── recordFilesBeforeBundleCommand.js ├── src ├── AlertAdapter.js ├── CodePush.js ├── logging.js ├── package-mixins.js └── versioning │ ├── BaseVersioning.js │ ├── BaseVersioning.test.js │ ├── IncrementalVersioning.js │ ├── IncrementalVersioning.test.js │ ├── SemverVersioning.js │ ├── SemverVersioning.test.js │ └── index.js ├── test ├── template │ ├── android │ │ └── app │ │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── com │ │ │ │ └── testcodepush │ │ │ │ └── MainApplication.java │ │ │ └── res │ │ │ └── values │ │ │ └── strings.xml │ ├── codePushWrapper.js │ ├── index.js │ ├── ios │ │ └── TestCodePush │ │ │ └── AppDelegate.mm │ └── scenarios │ │ ├── scenarioCheckForUpdate.js │ │ ├── scenarioCheckForUpdateCustomKey.js │ │ ├── scenarioDisallowRestartImmediate.js │ │ ├── scenarioDisallowRestartOnResume.js │ │ ├── scenarioDisallowRestartOnSuspend.js │ │ ├── scenarioDownloadUpdate.js │ │ ├── scenarioInstall.js │ │ ├── scenarioInstallOnRestartWithRevert.js │ │ ├── scenarioInstallOnResumeWithRevert.js │ │ ├── scenarioInstallOnSuspendWithRevert.js │ │ ├── scenarioInstallRestart2x.js │ │ ├── scenarioInstallWithRevert.js │ │ ├── scenarioRestart.js │ │ ├── scenarioRestart2x.js │ │ ├── scenarioSync.js │ │ ├── scenarioSync2x.js │ │ ├── scenarioSyncMandatoryDefault.js │ │ ├── scenarioSyncMandatoryRestart.js │ │ ├── scenarioSyncMandatoryResume.js │ │ ├── scenarioSyncMandatorySuspend.js │ │ ├── scenarioSyncRestartDelay.js │ │ ├── scenarioSyncResume.js │ │ ├── scenarioSyncResumeDelay.js │ │ ├── scenarioSyncSuspend.js │ │ ├── scenarioSyncSuspendDelay.js │ │ ├── updateDeviceReady.js │ │ ├── updateNARConditional.js │ │ ├── updateNotifyApplicationReady.js │ │ ├── updateSync.js │ │ └── updateSync2x.js └── test.ts ├── tsconfig.json ├── tslint.json └── typings └── react-native-code-push.d.ts /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/archive/react-native-code-push-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/.github/archive/react-native-code-push-ci.yml -------------------------------------------------------------------------------- /.github/policies/resourceManagement.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/.github/policies/resourceManagement.yml -------------------------------------------------------------------------------- /.github/workflows/unit-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/.github/workflows/unit-test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CodePush.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/CodePush.podspec -------------------------------------------------------------------------------- /Examples/CodePushDemoApp/.bundle/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/Examples/CodePushDemoApp/.bundle/config -------------------------------------------------------------------------------- /Examples/CodePushDemoApp/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native', 4 | }; 5 | -------------------------------------------------------------------------------- /Examples/CodePushDemoApp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/Examples/CodePushDemoApp/.gitignore -------------------------------------------------------------------------------- /Examples/CodePushDemoApp/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/Examples/CodePushDemoApp/.prettierrc.js -------------------------------------------------------------------------------- /Examples/CodePushDemoApp/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /Examples/CodePushDemoApp/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/Examples/CodePushDemoApp/App.tsx -------------------------------------------------------------------------------- /Examples/CodePushDemoApp/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/Examples/CodePushDemoApp/Gemfile -------------------------------------------------------------------------------- /Examples/CodePushDemoApp/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/Examples/CodePushDemoApp/Gemfile.lock -------------------------------------------------------------------------------- /Examples/CodePushDemoApp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/Examples/CodePushDemoApp/README.md -------------------------------------------------------------------------------- /Examples/CodePushDemoApp/__tests__/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/Examples/CodePushDemoApp/__tests__/App.test.tsx -------------------------------------------------------------------------------- /Examples/CodePushDemoApp/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/Examples/CodePushDemoApp/android/app/build.gradle -------------------------------------------------------------------------------- /Examples/CodePushDemoApp/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/Examples/CodePushDemoApp/android/app/debug.keystore -------------------------------------------------------------------------------- /Examples/CodePushDemoApp/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/Examples/CodePushDemoApp/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /Examples/CodePushDemoApp/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/Examples/CodePushDemoApp/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Examples/CodePushDemoApp/android/app/src/main/java/com/codepushdemoapp/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/Examples/CodePushDemoApp/android/app/src/main/java/com/codepushdemoapp/MainActivity.kt -------------------------------------------------------------------------------- /Examples/CodePushDemoApp/android/app/src/main/java/com/codepushdemoapp/MainApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/Examples/CodePushDemoApp/android/app/src/main/java/com/codepushdemoapp/MainApplication.kt -------------------------------------------------------------------------------- /Examples/CodePushDemoApp/android/app/src/main/res/drawable/rn_edit_text_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/Examples/CodePushDemoApp/android/app/src/main/res/drawable/rn_edit_text_material.xml -------------------------------------------------------------------------------- /Examples/CodePushDemoApp/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/Examples/CodePushDemoApp/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Examples/CodePushDemoApp/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/Examples/CodePushDemoApp/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Examples/CodePushDemoApp/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/Examples/CodePushDemoApp/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Examples/CodePushDemoApp/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/Examples/CodePushDemoApp/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Examples/CodePushDemoApp/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/Examples/CodePushDemoApp/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Examples/CodePushDemoApp/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/Examples/CodePushDemoApp/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Examples/CodePushDemoApp/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/Examples/CodePushDemoApp/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Examples/CodePushDemoApp/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/Examples/CodePushDemoApp/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Examples/CodePushDemoApp/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/Examples/CodePushDemoApp/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Examples/CodePushDemoApp/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/Examples/CodePushDemoApp/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Examples/CodePushDemoApp/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/Examples/CodePushDemoApp/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Examples/CodePushDemoApp/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/Examples/CodePushDemoApp/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Examples/CodePushDemoApp/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/Examples/CodePushDemoApp/android/build.gradle -------------------------------------------------------------------------------- /Examples/CodePushDemoApp/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/Examples/CodePushDemoApp/android/gradle.properties -------------------------------------------------------------------------------- /Examples/CodePushDemoApp/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/Examples/CodePushDemoApp/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Examples/CodePushDemoApp/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/Examples/CodePushDemoApp/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Examples/CodePushDemoApp/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/Examples/CodePushDemoApp/android/gradlew -------------------------------------------------------------------------------- /Examples/CodePushDemoApp/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/Examples/CodePushDemoApp/android/gradlew.bat -------------------------------------------------------------------------------- /Examples/CodePushDemoApp/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/Examples/CodePushDemoApp/android/settings.gradle -------------------------------------------------------------------------------- /Examples/CodePushDemoApp/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/Examples/CodePushDemoApp/app.json -------------------------------------------------------------------------------- /Examples/CodePushDemoApp/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/Examples/CodePushDemoApp/babel.config.js -------------------------------------------------------------------------------- /Examples/CodePushDemoApp/code-push.config.example.firebase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/Examples/CodePushDemoApp/code-push.config.example.firebase.ts -------------------------------------------------------------------------------- /Examples/CodePushDemoApp/code-push.config.example.supabase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/Examples/CodePushDemoApp/code-push.config.example.supabase.ts -------------------------------------------------------------------------------- /Examples/CodePushDemoApp/code-push.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/Examples/CodePushDemoApp/code-push.config.ts -------------------------------------------------------------------------------- /Examples/CodePushDemoApp/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/Examples/CodePushDemoApp/index.js -------------------------------------------------------------------------------- /Examples/CodePushDemoApp/ios/.xcode.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/Examples/CodePushDemoApp/ios/.xcode.env -------------------------------------------------------------------------------- /Examples/CodePushDemoApp/ios/CodePushDemoApp-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/Examples/CodePushDemoApp/ios/CodePushDemoApp-Bridging-Header.h -------------------------------------------------------------------------------- /Examples/CodePushDemoApp/ios/CodePushDemoApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/Examples/CodePushDemoApp/ios/CodePushDemoApp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Examples/CodePushDemoApp/ios/CodePushDemoApp.xcodeproj/xcshareddata/xcschemes/CodePushDemoApp.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/Examples/CodePushDemoApp/ios/CodePushDemoApp.xcodeproj/xcshareddata/xcschemes/CodePushDemoApp.xcscheme -------------------------------------------------------------------------------- /Examples/CodePushDemoApp/ios/CodePushDemoApp.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/Examples/CodePushDemoApp/ios/CodePushDemoApp.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Examples/CodePushDemoApp/ios/CodePushDemoApp/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/Examples/CodePushDemoApp/ios/CodePushDemoApp/AppDelegate.swift -------------------------------------------------------------------------------- /Examples/CodePushDemoApp/ios/CodePushDemoApp/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/Examples/CodePushDemoApp/ios/CodePushDemoApp/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Examples/CodePushDemoApp/ios/CodePushDemoApp/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/Examples/CodePushDemoApp/ios/CodePushDemoApp/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /Examples/CodePushDemoApp/ios/CodePushDemoApp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/Examples/CodePushDemoApp/ios/CodePushDemoApp/Info.plist -------------------------------------------------------------------------------- /Examples/CodePushDemoApp/ios/CodePushDemoApp/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/Examples/CodePushDemoApp/ios/CodePushDemoApp/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Examples/CodePushDemoApp/ios/CodePushDemoApp/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/Examples/CodePushDemoApp/ios/CodePushDemoApp/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /Examples/CodePushDemoApp/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/Examples/CodePushDemoApp/ios/Podfile -------------------------------------------------------------------------------- /Examples/CodePushDemoApp/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/Examples/CodePushDemoApp/ios/Podfile.lock -------------------------------------------------------------------------------- /Examples/CodePushDemoApp/jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | preset: 'react-native', 3 | }; 4 | -------------------------------------------------------------------------------- /Examples/CodePushDemoApp/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/Examples/CodePushDemoApp/metro.config.js -------------------------------------------------------------------------------- /Examples/CodePushDemoApp/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/Examples/CodePushDemoApp/package-lock.json -------------------------------------------------------------------------------- /Examples/CodePushDemoApp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/Examples/CodePushDemoApp/package.json -------------------------------------------------------------------------------- /Examples/CodePushDemoApp/scripts/invalidateCloudfrontCache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/Examples/CodePushDemoApp/scripts/invalidateCloudfrontCache.ts -------------------------------------------------------------------------------- /Examples/CodePushDemoApp/scripts/uploadFileToS3.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/Examples/CodePushDemoApp/scripts/uploadFileToS3.ts -------------------------------------------------------------------------------- /Examples/CodePushDemoApp/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/Examples/CodePushDemoApp/tsconfig.json -------------------------------------------------------------------------------- /Examples/CodePushDemoApp/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/Examples/CodePushDemoApp/utils/index.ts -------------------------------------------------------------------------------- /Examples/create-app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/Examples/create-app.js -------------------------------------------------------------------------------- /Examples/nexpect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/Examples/nexpect.js -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/README.md -------------------------------------------------------------------------------- /Recipes/UpdateButton.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/Recipes/UpdateButton.ios.js -------------------------------------------------------------------------------- /Recipes/UpdateOnStart.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/Recipes/UpdateOnStart.ios.js -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/SECURITY.md -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/com/microsoft/codepush/react/CodePush.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/android/app/src/main/java/com/microsoft/codepush/react/CodePush.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/microsoft/codepush/react/CodePushConstants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/android/app/src/main/java/com/microsoft/codepush/react/CodePushConstants.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/microsoft/codepush/react/CodePushDialog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/android/app/src/main/java/com/microsoft/codepush/react/CodePushDialog.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/microsoft/codepush/react/CodePushInstallMode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/android/app/src/main/java/com/microsoft/codepush/react/CodePushInstallMode.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/microsoft/codepush/react/CodePushInvalidPublicKeyException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/android/app/src/main/java/com/microsoft/codepush/react/CodePushInvalidPublicKeyException.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/microsoft/codepush/react/CodePushInvalidUpdateException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/android/app/src/main/java/com/microsoft/codepush/react/CodePushInvalidUpdateException.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/microsoft/codepush/react/CodePushMalformedDataException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/android/app/src/main/java/com/microsoft/codepush/react/CodePushMalformedDataException.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/microsoft/codepush/react/CodePushNativeModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/android/app/src/main/java/com/microsoft/codepush/react/CodePushNativeModule.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/microsoft/codepush/react/CodePushNotInitializedException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/android/app/src/main/java/com/microsoft/codepush/react/CodePushNotInitializedException.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/microsoft/codepush/react/CodePushTelemetryManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/android/app/src/main/java/com/microsoft/codepush/react/CodePushTelemetryManager.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/microsoft/codepush/react/CodePushUnknownException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/android/app/src/main/java/com/microsoft/codepush/react/CodePushUnknownException.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/microsoft/codepush/react/CodePushUpdateManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/android/app/src/main/java/com/microsoft/codepush/react/CodePushUpdateManager.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/microsoft/codepush/react/CodePushUpdateState.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/android/app/src/main/java/com/microsoft/codepush/react/CodePushUpdateState.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/microsoft/codepush/react/CodePushUpdateUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/android/app/src/main/java/com/microsoft/codepush/react/CodePushUpdateUtils.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/microsoft/codepush/react/CodePushUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/android/app/src/main/java/com/microsoft/codepush/react/CodePushUtils.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/microsoft/codepush/react/DownloadProgress.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/android/app/src/main/java/com/microsoft/codepush/react/DownloadProgress.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/microsoft/codepush/react/DownloadProgressCallback.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/android/app/src/main/java/com/microsoft/codepush/react/DownloadProgressCallback.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/microsoft/codepush/react/FileUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/android/app/src/main/java/com/microsoft/codepush/react/FileUtils.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/microsoft/codepush/react/SettingsManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/android/app/src/main/java/com/microsoft/codepush/react/SettingsManager.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/microsoft/codepush/react/TLSSocketFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/android/app/src/main/java/com/microsoft/codepush/react/TLSSocketFactory.java -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' -------------------------------------------------------------------------------- /app.plugin.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./expo/plugin/withCodePush"); 2 | -------------------------------------------------------------------------------- /babel-plugin-code-push/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/babel-plugin-code-push/index.js -------------------------------------------------------------------------------- /babel-plugin-code-push/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/babel-plugin-code-push/package-lock.json -------------------------------------------------------------------------------- /babel-plugin-code-push/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/babel-plugin-code-push/package.json -------------------------------------------------------------------------------- /babel-plugin-code-push/test/.babelrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/babel-plugin-code-push/test/.babelrc.js -------------------------------------------------------------------------------- /babel-plugin-code-push/test/cases/test1-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/babel-plugin-code-push/test/cases/test1-config -------------------------------------------------------------------------------- /babel-plugin-code-push/test/cases/test1-input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/babel-plugin-code-push/test/cases/test1-input -------------------------------------------------------------------------------- /babel-plugin-code-push/test/cases/test1-output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/babel-plugin-code-push/test/cases/test1-output -------------------------------------------------------------------------------- /babel-plugin-code-push/test/cases/test2-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/babel-plugin-code-push/test/cases/test2-config -------------------------------------------------------------------------------- /babel-plugin-code-push/test/cases/test2-input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/babel-plugin-code-push/test/cases/test2-input -------------------------------------------------------------------------------- /babel-plugin-code-push/test/cases/test2-output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/babel-plugin-code-push/test/cases/test2-output -------------------------------------------------------------------------------- /babel-plugin-code-push/test/codepush.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/babel-plugin-code-push/test/codepush.config.js -------------------------------------------------------------------------------- /babel-plugin-code-push/test/plugin.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/babel-plugin-code-push/test/plugin.test.js -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/babel.config.js -------------------------------------------------------------------------------- /bin/code-push.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/bin/code-push.js -------------------------------------------------------------------------------- /cli/commands/bundleCommand/bundleCodePush.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/cli/commands/bundleCommand/bundleCodePush.ts -------------------------------------------------------------------------------- /cli/commands/bundleCommand/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/cli/commands/bundleCommand/index.ts -------------------------------------------------------------------------------- /cli/commands/createHistoryCommand/createReleaseHistory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/cli/commands/createHistoryCommand/createReleaseHistory.ts -------------------------------------------------------------------------------- /cli/commands/createHistoryCommand/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/cli/commands/createHistoryCommand/index.ts -------------------------------------------------------------------------------- /cli/commands/initCommand/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/cli/commands/initCommand/index.ts -------------------------------------------------------------------------------- /cli/commands/initCommand/initAndroid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/cli/commands/initCommand/initAndroid.ts -------------------------------------------------------------------------------- /cli/commands/initCommand/initIos.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/cli/commands/initCommand/initIos.ts -------------------------------------------------------------------------------- /cli/commands/initCommand/test/initAndroid.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/cli/commands/initCommand/test/initAndroid.test.ts -------------------------------------------------------------------------------- /cli/commands/initCommand/test/initIos.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/cli/commands/initCommand/test/initIos.test.ts -------------------------------------------------------------------------------- /cli/commands/releaseCommand/addToReleaseHistory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/cli/commands/releaseCommand/addToReleaseHistory.ts -------------------------------------------------------------------------------- /cli/commands/releaseCommand/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/cli/commands/releaseCommand/index.ts -------------------------------------------------------------------------------- /cli/commands/releaseCommand/release.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/cli/commands/releaseCommand/release.ts -------------------------------------------------------------------------------- /cli/commands/showHistoryCommand/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/cli/commands/showHistoryCommand/index.ts -------------------------------------------------------------------------------- /cli/commands/updateHistoryCommand/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/cli/commands/updateHistoryCommand/index.ts -------------------------------------------------------------------------------- /cli/commands/updateHistoryCommand/updateReleaseHistory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/cli/commands/updateHistoryCommand/updateReleaseHistory.ts -------------------------------------------------------------------------------- /cli/constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/cli/constant.ts -------------------------------------------------------------------------------- /cli/functions/getReactTempDir.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/cli/functions/getReactTempDir.ts -------------------------------------------------------------------------------- /cli/functions/makeCodePushBundle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/cli/functions/makeCodePushBundle.ts -------------------------------------------------------------------------------- /cli/functions/prepareToBundleJS.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/cli/functions/prepareToBundleJS.ts -------------------------------------------------------------------------------- /cli/functions/runExpoBundleCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/cli/functions/runExpoBundleCommand.ts -------------------------------------------------------------------------------- /cli/functions/runHermesEmitBinaryCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/cli/functions/runHermesEmitBinaryCommand.ts -------------------------------------------------------------------------------- /cli/functions/runReactNativeBundleCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/cli/functions/runReactNativeBundleCommand.ts -------------------------------------------------------------------------------- /cli/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/cli/index.ts -------------------------------------------------------------------------------- /cli/jest.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/cli/jest.config.cjs -------------------------------------------------------------------------------- /cli/jest.resolver.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/cli/jest.resolver.cjs -------------------------------------------------------------------------------- /cli/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/cli/package.json -------------------------------------------------------------------------------- /cli/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/cli/tsconfig.json -------------------------------------------------------------------------------- /cli/utils/file-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/cli/utils/file-utils.ts -------------------------------------------------------------------------------- /cli/utils/fsUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/cli/utils/fsUtils.ts -------------------------------------------------------------------------------- /cli/utils/hash-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/cli/utils/hash-utils.ts -------------------------------------------------------------------------------- /cli/utils/promisfied-fs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/cli/utils/promisfied-fs.ts -------------------------------------------------------------------------------- /cli/utils/showLogo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/cli/utils/showLogo.ts -------------------------------------------------------------------------------- /cli/utils/unzip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/cli/utils/unzip.ts -------------------------------------------------------------------------------- /cli/utils/zip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/cli/utils/zip.ts -------------------------------------------------------------------------------- /code-push-plugin-testing-framework/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/code-push-plugin-testing-framework/package.json -------------------------------------------------------------------------------- /code-push-plugin-testing-framework/script/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/code-push-plugin-testing-framework/script/index.js -------------------------------------------------------------------------------- /code-push-plugin-testing-framework/script/platform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/code-push-plugin-testing-framework/script/platform.js -------------------------------------------------------------------------------- /code-push-plugin-testing-framework/script/projectManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/code-push-plugin-testing-framework/script/projectManager.js -------------------------------------------------------------------------------- /code-push-plugin-testing-framework/script/serverUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/code-push-plugin-testing-framework/script/serverUtil.js -------------------------------------------------------------------------------- /code-push-plugin-testing-framework/script/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/code-push-plugin-testing-framework/script/test.js -------------------------------------------------------------------------------- /code-push-plugin-testing-framework/script/testBuilder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/code-push-plugin-testing-framework/script/testBuilder.js -------------------------------------------------------------------------------- /code-push-plugin-testing-framework/script/testConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/code-push-plugin-testing-framework/script/testConfig.js -------------------------------------------------------------------------------- /code-push-plugin-testing-framework/script/testUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/code-push-plugin-testing-framework/script/testUtil.js -------------------------------------------------------------------------------- /code-push-plugin-testing-framework/typings/code-push-plugin-testing-framework.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/code-push-plugin-testing-framework/typings/code-push-plugin-testing-framework.d.ts -------------------------------------------------------------------------------- /docs/api-android.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/docs/api-android.md -------------------------------------------------------------------------------- /docs/api-ios.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/docs/api-ios.md -------------------------------------------------------------------------------- /docs/api-js.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/docs/api-js.md -------------------------------------------------------------------------------- /docs/multi-deployment-testing-android.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/docs/multi-deployment-testing-android.md -------------------------------------------------------------------------------- /docs/multi-deployment-testing-ios.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/docs/multi-deployment-testing-ios.md -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /expo/plugin/__tests__/withCodePushAndroid.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/expo/plugin/__tests__/withCodePushAndroid.test.ts -------------------------------------------------------------------------------- /expo/plugin/withCodePush.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/expo/plugin/withCodePush.js -------------------------------------------------------------------------------- /expo/plugin/withCodePushAndroid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/expo/plugin/withCodePushAndroid.js -------------------------------------------------------------------------------- /expo/plugin/withCodePushIos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/expo/plugin/withCodePushIos.js -------------------------------------------------------------------------------- /ios/CodePush.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/ios/CodePush.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/CodePush.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/ios/CodePush.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/CodePush.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/ios/CodePush.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/CodePush/Base64/Base64/MF_Base64Additions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/ios/CodePush/Base64/Base64/MF_Base64Additions.h -------------------------------------------------------------------------------- /ios/CodePush/Base64/Base64/MF_Base64Additions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/ios/CodePush/Base64/Base64/MF_Base64Additions.m -------------------------------------------------------------------------------- /ios/CodePush/Base64/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/ios/CodePush/Base64/README.md -------------------------------------------------------------------------------- /ios/CodePush/CodePush.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/ios/CodePush/CodePush.h -------------------------------------------------------------------------------- /ios/CodePush/CodePush.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/ios/CodePush/CodePush.m -------------------------------------------------------------------------------- /ios/CodePush/CodePushConfig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/ios/CodePush/CodePushConfig.m -------------------------------------------------------------------------------- /ios/CodePush/CodePushDownloadHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/ios/CodePush/CodePushDownloadHandler.m -------------------------------------------------------------------------------- /ios/CodePush/CodePushErrorUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/ios/CodePush/CodePushErrorUtils.m -------------------------------------------------------------------------------- /ios/CodePush/CodePushPackage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/ios/CodePush/CodePushPackage.m -------------------------------------------------------------------------------- /ios/CodePush/CodePushTelemetryManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/ios/CodePush/CodePushTelemetryManager.m -------------------------------------------------------------------------------- /ios/CodePush/CodePushUpdateUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/ios/CodePush/CodePushUpdateUtils.m -------------------------------------------------------------------------------- /ios/CodePush/CodePushUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/ios/CodePush/CodePushUtils.m -------------------------------------------------------------------------------- /ios/CodePush/JWT/Core/Algorithms/Base/JWTAlgorithm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/ios/CodePush/JWT/Core/Algorithms/Base/JWTAlgorithm.h -------------------------------------------------------------------------------- /ios/CodePush/JWT/Core/Algorithms/Base/JWTAlgorithmFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/ios/CodePush/JWT/Core/Algorithms/Base/JWTAlgorithmFactory.h -------------------------------------------------------------------------------- /ios/CodePush/JWT/Core/Algorithms/Base/JWTAlgorithmFactory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/ios/CodePush/JWT/Core/Algorithms/Base/JWTAlgorithmFactory.m -------------------------------------------------------------------------------- /ios/CodePush/JWT/Core/Algorithms/Base/JWTAlgorithmNone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/ios/CodePush/JWT/Core/Algorithms/Base/JWTAlgorithmNone.h -------------------------------------------------------------------------------- /ios/CodePush/JWT/Core/Algorithms/Base/JWTAlgorithmNone.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/ios/CodePush/JWT/Core/Algorithms/Base/JWTAlgorithmNone.m -------------------------------------------------------------------------------- /ios/CodePush/JWT/Core/Algorithms/ESFamily/JWTAlgorithmESBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/ios/CodePush/JWT/Core/Algorithms/ESFamily/JWTAlgorithmESBase.h -------------------------------------------------------------------------------- /ios/CodePush/JWT/Core/Algorithms/ESFamily/JWTAlgorithmESBase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/ios/CodePush/JWT/Core/Algorithms/ESFamily/JWTAlgorithmESBase.m -------------------------------------------------------------------------------- /ios/CodePush/JWT/Core/Algorithms/HSFamily/JWTAlgorithmHSBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/ios/CodePush/JWT/Core/Algorithms/HSFamily/JWTAlgorithmHSBase.h -------------------------------------------------------------------------------- /ios/CodePush/JWT/Core/Algorithms/HSFamily/JWTAlgorithmHSBase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/ios/CodePush/JWT/Core/Algorithms/HSFamily/JWTAlgorithmHSBase.m -------------------------------------------------------------------------------- /ios/CodePush/JWT/Core/Algorithms/Holders/JWTAlgorithmDataHolder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/ios/CodePush/JWT/Core/Algorithms/Holders/JWTAlgorithmDataHolder.h -------------------------------------------------------------------------------- /ios/CodePush/JWT/Core/Algorithms/Holders/JWTAlgorithmDataHolder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/ios/CodePush/JWT/Core/Algorithms/Holders/JWTAlgorithmDataHolder.m -------------------------------------------------------------------------------- /ios/CodePush/JWT/Core/Algorithms/Holders/JWTAlgorithmDataHolderChain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/ios/CodePush/JWT/Core/Algorithms/Holders/JWTAlgorithmDataHolderChain.h -------------------------------------------------------------------------------- /ios/CodePush/JWT/Core/Algorithms/Holders/JWTAlgorithmDataHolderChain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/ios/CodePush/JWT/Core/Algorithms/Holders/JWTAlgorithmDataHolderChain.m -------------------------------------------------------------------------------- /ios/CodePush/JWT/Core/Algorithms/RSFamily/JWTAlgorithmRSBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/ios/CodePush/JWT/Core/Algorithms/RSFamily/JWTAlgorithmRSBase.h -------------------------------------------------------------------------------- /ios/CodePush/JWT/Core/Algorithms/RSFamily/JWTAlgorithmRSBase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/ios/CodePush/JWT/Core/Algorithms/RSFamily/JWTAlgorithmRSBase.m -------------------------------------------------------------------------------- /ios/CodePush/JWT/Core/Algorithms/RSFamily/JWTRSAlgorithm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/ios/CodePush/JWT/Core/Algorithms/RSFamily/JWTRSAlgorithm.h -------------------------------------------------------------------------------- /ios/CodePush/JWT/Core/Algorithms/RSFamily/RSKeys/JWTCryptoKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/ios/CodePush/JWT/Core/Algorithms/RSFamily/RSKeys/JWTCryptoKey.h -------------------------------------------------------------------------------- /ios/CodePush/JWT/Core/Algorithms/RSFamily/RSKeys/JWTCryptoKey.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/ios/CodePush/JWT/Core/Algorithms/RSFamily/RSKeys/JWTCryptoKey.m -------------------------------------------------------------------------------- /ios/CodePush/JWT/Core/Algorithms/RSFamily/RSKeys/JWTCryptoKeyExtractor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/ios/CodePush/JWT/Core/Algorithms/RSFamily/RSKeys/JWTCryptoKeyExtractor.h -------------------------------------------------------------------------------- /ios/CodePush/JWT/Core/Algorithms/RSFamily/RSKeys/JWTCryptoKeyExtractor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/ios/CodePush/JWT/Core/Algorithms/RSFamily/RSKeys/JWTCryptoKeyExtractor.m -------------------------------------------------------------------------------- /ios/CodePush/JWT/Core/Algorithms/RSFamily/RSKeys/JWTCryptoSecurity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/ios/CodePush/JWT/Core/Algorithms/RSFamily/RSKeys/JWTCryptoSecurity.h -------------------------------------------------------------------------------- /ios/CodePush/JWT/Core/Algorithms/RSFamily/RSKeys/JWTCryptoSecurity.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/ios/CodePush/JWT/Core/Algorithms/RSFamily/RSKeys/JWTCryptoSecurity.m -------------------------------------------------------------------------------- /ios/CodePush/JWT/Core/ClaimSet/JWTClaim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/ios/CodePush/JWT/Core/ClaimSet/JWTClaim.h -------------------------------------------------------------------------------- /ios/CodePush/JWT/Core/ClaimSet/JWTClaim.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/ios/CodePush/JWT/Core/ClaimSet/JWTClaim.m -------------------------------------------------------------------------------- /ios/CodePush/JWT/Core/ClaimSet/JWTClaimsSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/ios/CodePush/JWT/Core/ClaimSet/JWTClaimsSet.h -------------------------------------------------------------------------------- /ios/CodePush/JWT/Core/ClaimSet/JWTClaimsSet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/ios/CodePush/JWT/Core/ClaimSet/JWTClaimsSet.m -------------------------------------------------------------------------------- /ios/CodePush/JWT/Core/ClaimSet/JWTClaimsSetSerializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/ios/CodePush/JWT/Core/ClaimSet/JWTClaimsSetSerializer.h -------------------------------------------------------------------------------- /ios/CodePush/JWT/Core/ClaimSet/JWTClaimsSetSerializer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/ios/CodePush/JWT/Core/ClaimSet/JWTClaimsSetSerializer.m -------------------------------------------------------------------------------- /ios/CodePush/JWT/Core/ClaimSet/JWTClaimsSetVerifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/ios/CodePush/JWT/Core/ClaimSet/JWTClaimsSetVerifier.h -------------------------------------------------------------------------------- /ios/CodePush/JWT/Core/ClaimSet/JWTClaimsSetVerifier.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/ios/CodePush/JWT/Core/ClaimSet/JWTClaimsSetVerifier.m -------------------------------------------------------------------------------- /ios/CodePush/JWT/Core/Coding/JWTCoding+ResultTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/ios/CodePush/JWT/Core/Coding/JWTCoding+ResultTypes.h -------------------------------------------------------------------------------- /ios/CodePush/JWT/Core/Coding/JWTCoding+ResultTypes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/ios/CodePush/JWT/Core/Coding/JWTCoding+ResultTypes.m -------------------------------------------------------------------------------- /ios/CodePush/JWT/Core/Coding/JWTCoding+VersionOne.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/ios/CodePush/JWT/Core/Coding/JWTCoding+VersionOne.h -------------------------------------------------------------------------------- /ios/CodePush/JWT/Core/Coding/JWTCoding+VersionOne.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/ios/CodePush/JWT/Core/Coding/JWTCoding+VersionOne.m -------------------------------------------------------------------------------- /ios/CodePush/JWT/Core/Coding/JWTCoding+VersionThree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/ios/CodePush/JWT/Core/Coding/JWTCoding+VersionThree.h -------------------------------------------------------------------------------- /ios/CodePush/JWT/Core/Coding/JWTCoding+VersionThree.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/ios/CodePush/JWT/Core/Coding/JWTCoding+VersionThree.m -------------------------------------------------------------------------------- /ios/CodePush/JWT/Core/Coding/JWTCoding+VersionTwo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/ios/CodePush/JWT/Core/Coding/JWTCoding+VersionTwo.h -------------------------------------------------------------------------------- /ios/CodePush/JWT/Core/Coding/JWTCoding+VersionTwo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/ios/CodePush/JWT/Core/Coding/JWTCoding+VersionTwo.m -------------------------------------------------------------------------------- /ios/CodePush/JWT/Core/Coding/JWTCoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/ios/CodePush/JWT/Core/Coding/JWTCoding.h -------------------------------------------------------------------------------- /ios/CodePush/JWT/Core/Coding/JWTCoding.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/ios/CodePush/JWT/Core/Coding/JWTCoding.m -------------------------------------------------------------------------------- /ios/CodePush/JWT/Core/FrameworkSupplement/JWT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/ios/CodePush/JWT/Core/FrameworkSupplement/JWT.h -------------------------------------------------------------------------------- /ios/CodePush/JWT/Core/FrameworkSupplement/Map.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/ios/CodePush/JWT/Core/FrameworkSupplement/Map.modulemap -------------------------------------------------------------------------------- /ios/CodePush/JWT/Core/Supplement/JWTBase64Coder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/ios/CodePush/JWT/Core/Supplement/JWTBase64Coder.h -------------------------------------------------------------------------------- /ios/CodePush/JWT/Core/Supplement/JWTBase64Coder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/ios/CodePush/JWT/Core/Supplement/JWTBase64Coder.m -------------------------------------------------------------------------------- /ios/CodePush/JWT/Core/Supplement/JWTDeprecations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/ios/CodePush/JWT/Core/Supplement/JWTDeprecations.h -------------------------------------------------------------------------------- /ios/CodePush/JWT/Core/Supplement/JWTErrorDescription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/ios/CodePush/JWT/Core/Supplement/JWTErrorDescription.h -------------------------------------------------------------------------------- /ios/CodePush/JWT/Core/Supplement/JWTErrorDescription.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/ios/CodePush/JWT/Core/Supplement/JWTErrorDescription.m -------------------------------------------------------------------------------- /ios/CodePush/JWT/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/ios/CodePush/JWT/LICENSE -------------------------------------------------------------------------------- /ios/CodePush/JWT/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/ios/CodePush/JWT/README.md -------------------------------------------------------------------------------- /ios/CodePush/RCTConvert+CodePushInstallMode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/ios/CodePush/RCTConvert+CodePushInstallMode.m -------------------------------------------------------------------------------- /ios/CodePush/RCTConvert+CodePushUpdateState.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/ios/CodePush/RCTConvert+CodePushUpdateState.m -------------------------------------------------------------------------------- /ios/CodePush/SSZipArchive/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/ios/CodePush/SSZipArchive/Info.plist -------------------------------------------------------------------------------- /ios/CodePush/SSZipArchive/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/ios/CodePush/SSZipArchive/README.md -------------------------------------------------------------------------------- /ios/CodePush/SSZipArchive/SSZipArchive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/ios/CodePush/SSZipArchive/SSZipArchive.h -------------------------------------------------------------------------------- /ios/CodePush/SSZipArchive/SSZipArchive.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/ios/CodePush/SSZipArchive/SSZipArchive.m -------------------------------------------------------------------------------- /ios/CodePush/SSZipArchive/SSZipCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/ios/CodePush/SSZipArchive/SSZipCommon.h -------------------------------------------------------------------------------- /ios/CodePush/SSZipArchive/Supporting Files/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/ios/CodePush/SSZipArchive/Supporting Files/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /ios/CodePush/SSZipArchive/include/ZipArchive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/ios/CodePush/SSZipArchive/include/ZipArchive.h -------------------------------------------------------------------------------- /ios/CodePush/SSZipArchive/minizip/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/ios/CodePush/SSZipArchive/minizip/LICENSE -------------------------------------------------------------------------------- /ios/CodePush/SSZipArchive/minizip/mz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/ios/CodePush/SSZipArchive/minizip/mz.h -------------------------------------------------------------------------------- /ios/CodePush/SSZipArchive/minizip/mz_compat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/ios/CodePush/SSZipArchive/minizip/mz_compat.c -------------------------------------------------------------------------------- /ios/CodePush/SSZipArchive/minizip/mz_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/ios/CodePush/SSZipArchive/minizip/mz_compat.h -------------------------------------------------------------------------------- /ios/CodePush/SSZipArchive/minizip/mz_crypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/ios/CodePush/SSZipArchive/minizip/mz_crypt.c -------------------------------------------------------------------------------- /ios/CodePush/SSZipArchive/minizip/mz_crypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/ios/CodePush/SSZipArchive/minizip/mz_crypt.h -------------------------------------------------------------------------------- /ios/CodePush/SSZipArchive/minizip/mz_crypt_apple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/ios/CodePush/SSZipArchive/minizip/mz_crypt_apple.c -------------------------------------------------------------------------------- /ios/CodePush/SSZipArchive/minizip/mz_os.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/ios/CodePush/SSZipArchive/minizip/mz_os.c -------------------------------------------------------------------------------- /ios/CodePush/SSZipArchive/minizip/mz_os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/ios/CodePush/SSZipArchive/minizip/mz_os.h -------------------------------------------------------------------------------- /ios/CodePush/SSZipArchive/minizip/mz_os_posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/ios/CodePush/SSZipArchive/minizip/mz_os_posix.c -------------------------------------------------------------------------------- /ios/CodePush/SSZipArchive/minizip/mz_strm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/ios/CodePush/SSZipArchive/minizip/mz_strm.c -------------------------------------------------------------------------------- /ios/CodePush/SSZipArchive/minizip/mz_strm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/ios/CodePush/SSZipArchive/minizip/mz_strm.h -------------------------------------------------------------------------------- /ios/CodePush/SSZipArchive/minizip/mz_strm_buf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/ios/CodePush/SSZipArchive/minizip/mz_strm_buf.c -------------------------------------------------------------------------------- /ios/CodePush/SSZipArchive/minizip/mz_strm_buf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/ios/CodePush/SSZipArchive/minizip/mz_strm_buf.h -------------------------------------------------------------------------------- /ios/CodePush/SSZipArchive/minizip/mz_strm_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/ios/CodePush/SSZipArchive/minizip/mz_strm_mem.c -------------------------------------------------------------------------------- /ios/CodePush/SSZipArchive/minizip/mz_strm_mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/ios/CodePush/SSZipArchive/minizip/mz_strm_mem.h -------------------------------------------------------------------------------- /ios/CodePush/SSZipArchive/minizip/mz_strm_os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/ios/CodePush/SSZipArchive/minizip/mz_strm_os.h -------------------------------------------------------------------------------- /ios/CodePush/SSZipArchive/minizip/mz_strm_os_posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/ios/CodePush/SSZipArchive/minizip/mz_strm_os_posix.c -------------------------------------------------------------------------------- /ios/CodePush/SSZipArchive/minizip/mz_strm_pkcrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/ios/CodePush/SSZipArchive/minizip/mz_strm_pkcrypt.c -------------------------------------------------------------------------------- /ios/CodePush/SSZipArchive/minizip/mz_strm_pkcrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/ios/CodePush/SSZipArchive/minizip/mz_strm_pkcrypt.h -------------------------------------------------------------------------------- /ios/CodePush/SSZipArchive/minizip/mz_strm_split.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/ios/CodePush/SSZipArchive/minizip/mz_strm_split.c -------------------------------------------------------------------------------- /ios/CodePush/SSZipArchive/minizip/mz_strm_split.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/ios/CodePush/SSZipArchive/minizip/mz_strm_split.h -------------------------------------------------------------------------------- /ios/CodePush/SSZipArchive/minizip/mz_strm_wzaes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/ios/CodePush/SSZipArchive/minizip/mz_strm_wzaes.c -------------------------------------------------------------------------------- /ios/CodePush/SSZipArchive/minizip/mz_strm_wzaes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/ios/CodePush/SSZipArchive/minizip/mz_strm_wzaes.h -------------------------------------------------------------------------------- /ios/CodePush/SSZipArchive/minizip/mz_strm_zlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/ios/CodePush/SSZipArchive/minizip/mz_strm_zlib.c -------------------------------------------------------------------------------- /ios/CodePush/SSZipArchive/minizip/mz_strm_zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/ios/CodePush/SSZipArchive/minizip/mz_strm_zlib.h -------------------------------------------------------------------------------- /ios/CodePush/SSZipArchive/minizip/mz_zip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/ios/CodePush/SSZipArchive/minizip/mz_zip.c -------------------------------------------------------------------------------- /ios/CodePush/SSZipArchive/minizip/mz_zip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/ios/CodePush/SSZipArchive/minizip/mz_zip.h -------------------------------------------------------------------------------- /ios/CodePush/SSZipArchive/minizip/mz_zip_rw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/ios/CodePush/SSZipArchive/minizip/mz_zip_rw.c -------------------------------------------------------------------------------- /ios/CodePush/SSZipArchive/minizip/mz_zip_rw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/ios/CodePush/SSZipArchive/minizip/mz_zip_rw.h -------------------------------------------------------------------------------- /ios/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/ios/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/package.json -------------------------------------------------------------------------------- /react-native.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/react-native.config.js -------------------------------------------------------------------------------- /scripts/generateBundledResourcesHash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/scripts/generateBundledResourcesHash.js -------------------------------------------------------------------------------- /scripts/getFilesInFolder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/scripts/getFilesInFolder.js -------------------------------------------------------------------------------- /scripts/recordFilesBeforeBundleCommand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/scripts/recordFilesBeforeBundleCommand.js -------------------------------------------------------------------------------- /src/AlertAdapter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/src/AlertAdapter.js -------------------------------------------------------------------------------- /src/CodePush.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/src/CodePush.js -------------------------------------------------------------------------------- /src/logging.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/src/logging.js -------------------------------------------------------------------------------- /src/package-mixins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/src/package-mixins.js -------------------------------------------------------------------------------- /src/versioning/BaseVersioning.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/src/versioning/BaseVersioning.js -------------------------------------------------------------------------------- /src/versioning/BaseVersioning.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/src/versioning/BaseVersioning.test.js -------------------------------------------------------------------------------- /src/versioning/IncrementalVersioning.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/src/versioning/IncrementalVersioning.js -------------------------------------------------------------------------------- /src/versioning/IncrementalVersioning.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/src/versioning/IncrementalVersioning.test.js -------------------------------------------------------------------------------- /src/versioning/SemverVersioning.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/src/versioning/SemverVersioning.js -------------------------------------------------------------------------------- /src/versioning/SemverVersioning.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/src/versioning/SemverVersioning.test.js -------------------------------------------------------------------------------- /src/versioning/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/src/versioning/index.js -------------------------------------------------------------------------------- /test/template/android/app/src/main/java/com/testcodepush/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/test/template/android/app/src/main/java/com/testcodepush/MainApplication.java -------------------------------------------------------------------------------- /test/template/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/test/template/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /test/template/codePushWrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/test/template/codePushWrapper.js -------------------------------------------------------------------------------- /test/template/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/test/template/index.js -------------------------------------------------------------------------------- /test/template/ios/TestCodePush/AppDelegate.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/test/template/ios/TestCodePush/AppDelegate.mm -------------------------------------------------------------------------------- /test/template/scenarios/scenarioCheckForUpdate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/test/template/scenarios/scenarioCheckForUpdate.js -------------------------------------------------------------------------------- /test/template/scenarios/scenarioCheckForUpdateCustomKey.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/test/template/scenarios/scenarioCheckForUpdateCustomKey.js -------------------------------------------------------------------------------- /test/template/scenarios/scenarioDisallowRestartImmediate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/test/template/scenarios/scenarioDisallowRestartImmediate.js -------------------------------------------------------------------------------- /test/template/scenarios/scenarioDisallowRestartOnResume.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/test/template/scenarios/scenarioDisallowRestartOnResume.js -------------------------------------------------------------------------------- /test/template/scenarios/scenarioDisallowRestartOnSuspend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/test/template/scenarios/scenarioDisallowRestartOnSuspend.js -------------------------------------------------------------------------------- /test/template/scenarios/scenarioDownloadUpdate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/test/template/scenarios/scenarioDownloadUpdate.js -------------------------------------------------------------------------------- /test/template/scenarios/scenarioInstall.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/test/template/scenarios/scenarioInstall.js -------------------------------------------------------------------------------- /test/template/scenarios/scenarioInstallOnRestartWithRevert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/test/template/scenarios/scenarioInstallOnRestartWithRevert.js -------------------------------------------------------------------------------- /test/template/scenarios/scenarioInstallOnResumeWithRevert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/test/template/scenarios/scenarioInstallOnResumeWithRevert.js -------------------------------------------------------------------------------- /test/template/scenarios/scenarioInstallOnSuspendWithRevert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/test/template/scenarios/scenarioInstallOnSuspendWithRevert.js -------------------------------------------------------------------------------- /test/template/scenarios/scenarioInstallRestart2x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/test/template/scenarios/scenarioInstallRestart2x.js -------------------------------------------------------------------------------- /test/template/scenarios/scenarioInstallWithRevert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/test/template/scenarios/scenarioInstallWithRevert.js -------------------------------------------------------------------------------- /test/template/scenarios/scenarioRestart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/test/template/scenarios/scenarioRestart.js -------------------------------------------------------------------------------- /test/template/scenarios/scenarioRestart2x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/test/template/scenarios/scenarioRestart2x.js -------------------------------------------------------------------------------- /test/template/scenarios/scenarioSync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/test/template/scenarios/scenarioSync.js -------------------------------------------------------------------------------- /test/template/scenarios/scenarioSync2x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/test/template/scenarios/scenarioSync2x.js -------------------------------------------------------------------------------- /test/template/scenarios/scenarioSyncMandatoryDefault.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/test/template/scenarios/scenarioSyncMandatoryDefault.js -------------------------------------------------------------------------------- /test/template/scenarios/scenarioSyncMandatoryRestart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/test/template/scenarios/scenarioSyncMandatoryRestart.js -------------------------------------------------------------------------------- /test/template/scenarios/scenarioSyncMandatoryResume.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/test/template/scenarios/scenarioSyncMandatoryResume.js -------------------------------------------------------------------------------- /test/template/scenarios/scenarioSyncMandatorySuspend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/test/template/scenarios/scenarioSyncMandatorySuspend.js -------------------------------------------------------------------------------- /test/template/scenarios/scenarioSyncRestartDelay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/test/template/scenarios/scenarioSyncRestartDelay.js -------------------------------------------------------------------------------- /test/template/scenarios/scenarioSyncResume.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/test/template/scenarios/scenarioSyncResume.js -------------------------------------------------------------------------------- /test/template/scenarios/scenarioSyncResumeDelay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/test/template/scenarios/scenarioSyncResumeDelay.js -------------------------------------------------------------------------------- /test/template/scenarios/scenarioSyncSuspend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/test/template/scenarios/scenarioSyncSuspend.js -------------------------------------------------------------------------------- /test/template/scenarios/scenarioSyncSuspendDelay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/test/template/scenarios/scenarioSyncSuspendDelay.js -------------------------------------------------------------------------------- /test/template/scenarios/updateDeviceReady.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/test/template/scenarios/updateDeviceReady.js -------------------------------------------------------------------------------- /test/template/scenarios/updateNARConditional.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/test/template/scenarios/updateNARConditional.js -------------------------------------------------------------------------------- /test/template/scenarios/updateNotifyApplicationReady.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/test/template/scenarios/updateNotifyApplicationReady.js -------------------------------------------------------------------------------- /test/template/scenarios/updateSync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/test/template/scenarios/updateSync.js -------------------------------------------------------------------------------- /test/template/scenarios/updateSync2x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/test/template/scenarios/updateSync2x.js -------------------------------------------------------------------------------- /test/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/test/test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/tslint.json -------------------------------------------------------------------------------- /typings/react-native-code-push.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soomgo-Mobile/react-native-code-push/HEAD/typings/react-native-code-push.d.ts --------------------------------------------------------------------------------