├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .flowconfig ├── .gitattributes ├── .github ├── dependabot.yml └── workflows │ ├── lint.yml │ └── test.yml ├── .gitignore ├── .prettierignore ├── .prettierrc ├── CHANGELOG.md ├── LICENSE ├── README.md ├── RELEASE.md ├── __mocks__ └── react-native.js ├── babel.config.js ├── examples ├── expo │ ├── .gitignore │ ├── .watchmanconfig │ ├── App.js │ ├── app.json │ ├── assets │ │ ├── icon.png │ │ └── splash.png │ ├── babel.config.js │ └── package.json └── reactnative │ ├── .buckconfig │ ├── .bundle │ └── config │ ├── .eslintrc.js │ ├── .flowconfig │ ├── .gitignore │ ├── .node-version │ ├── .prettierrc.js │ ├── .ruby-version │ ├── .watchmanconfig │ ├── App.js │ ├── Gemfile │ ├── Gemfile.lock │ ├── __tests__ │ └── App-test.js │ ├── android │ ├── app │ │ ├── _BUCK │ │ ├── build.gradle │ │ ├── build_defs.bzl │ │ ├── debug.keystore │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── debug │ │ │ ├── AndroidManifest.xml │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── reactnative │ │ │ │ └── ReactNativeFlipper.java │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── reactnative │ │ │ │ ├── MainActivity.java │ │ │ │ ├── MainApplication.java │ │ │ │ └── newarchitecture │ │ │ │ ├── MainApplicationReactNativeHost.java │ │ │ │ ├── components │ │ │ │ └── MainComponentsRegistry.java │ │ │ │ └── modules │ │ │ │ └── MainApplicationTurboModuleManagerDelegate.java │ │ │ ├── jni │ │ │ ├── CMakeLists.txt │ │ │ ├── MainApplicationModuleProvider.cpp │ │ │ ├── MainApplicationModuleProvider.h │ │ │ ├── MainApplicationTurboModuleManagerDelegate.cpp │ │ │ ├── MainApplicationTurboModuleManagerDelegate.h │ │ │ ├── MainComponentsRegistry.cpp │ │ │ ├── MainComponentsRegistry.h │ │ │ └── OnLoad.cpp │ │ │ └── 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 │ ├── index.js │ ├── ios │ ├── .xcode.env │ ├── Podfile │ ├── Podfile.lock │ ├── reactnative.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── reactnative.xcscheme │ ├── reactnative.xcworkspace │ │ └── contents.xcworkspacedata │ ├── reactnative │ │ ├── AppDelegate.h │ │ ├── AppDelegate.mm │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Info.plist │ │ ├── LaunchScreen.storyboard │ │ └── main.m │ └── reactnativeTests │ │ ├── Info.plist │ │ └── reactnativeTests.m │ ├── metro.config.js │ ├── package-lock.json │ ├── package.json │ └── yarn.lock ├── lerna.json ├── package.json ├── packages ├── react-native-version-check-expo │ ├── .npmignore │ ├── .npmrc │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── index.js │ ├── package-lock.json │ ├── package.json │ └── src │ │ └── ExpoVersionInfo.js └── react-native-version-check │ ├── .npmignore │ ├── .npmrc │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── android │ ├── build.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ └── java │ │ └── io │ │ └── xogus │ │ └── reactnative │ │ └── versioncheck │ │ ├── RNVersionCheckModule.java │ │ └── RNVersionCheckPackage.java │ ├── builder.js │ ├── index.js │ ├── ios │ ├── RNVersionCheck.h │ ├── RNVersionCheck.m │ └── RNVersionCheck.xcodeproj │ │ └── project.pbxproj │ ├── package.json │ ├── react-native-version-check.podspec │ └── src │ ├── RNVersionInfo.js │ ├── __tests__ │ ├── getLatestVersion.js │ ├── needUpdate.js │ └── versionInfo.js │ ├── getLatestVersion.js │ ├── getStoreUrl.js │ ├── needUpdate.js │ ├── providers │ ├── __tests__ │ │ └── playStore.js │ ├── appStore.js │ ├── index.js │ ├── playStore.js │ └── types.js │ └── versionInfo.js ├── scripts └── test.js └── setupJest.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/.eslintrc -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * test=auto eol=lf 2 | *.pbxproj -text 3 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | /flow-typed/ 2 | /node_modules/ 3 | package.json 4 | /test-results/ 5 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/.prettierrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/RELEASE.md -------------------------------------------------------------------------------- /__mocks__/react-native.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/__mocks__/react-native.js -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/babel.config.js -------------------------------------------------------------------------------- /examples/expo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/examples/expo/.gitignore -------------------------------------------------------------------------------- /examples/expo/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /examples/expo/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/examples/expo/App.js -------------------------------------------------------------------------------- /examples/expo/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/examples/expo/app.json -------------------------------------------------------------------------------- /examples/expo/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/examples/expo/assets/icon.png -------------------------------------------------------------------------------- /examples/expo/assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/examples/expo/assets/splash.png -------------------------------------------------------------------------------- /examples/expo/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/examples/expo/babel.config.js -------------------------------------------------------------------------------- /examples/expo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/examples/expo/package.json -------------------------------------------------------------------------------- /examples/reactnative/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/examples/reactnative/.buckconfig -------------------------------------------------------------------------------- /examples/reactnative/.bundle/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/examples/reactnative/.bundle/config -------------------------------------------------------------------------------- /examples/reactnative/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native-community', 4 | }; 5 | -------------------------------------------------------------------------------- /examples/reactnative/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/examples/reactnative/.flowconfig -------------------------------------------------------------------------------- /examples/reactnative/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/examples/reactnative/.gitignore -------------------------------------------------------------------------------- /examples/reactnative/.node-version: -------------------------------------------------------------------------------- 1 | 16 2 | -------------------------------------------------------------------------------- /examples/reactnative/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/examples/reactnative/.prettierrc.js -------------------------------------------------------------------------------- /examples/reactnative/.ruby-version: -------------------------------------------------------------------------------- 1 | 2.7.5 2 | -------------------------------------------------------------------------------- /examples/reactnative/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /examples/reactnative/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/examples/reactnative/App.js -------------------------------------------------------------------------------- /examples/reactnative/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/examples/reactnative/Gemfile -------------------------------------------------------------------------------- /examples/reactnative/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/examples/reactnative/Gemfile.lock -------------------------------------------------------------------------------- /examples/reactnative/__tests__/App-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/examples/reactnative/__tests__/App-test.js -------------------------------------------------------------------------------- /examples/reactnative/android/app/_BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/examples/reactnative/android/app/_BUCK -------------------------------------------------------------------------------- /examples/reactnative/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/examples/reactnative/android/app/build.gradle -------------------------------------------------------------------------------- /examples/reactnative/android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/examples/reactnative/android/app/build_defs.bzl -------------------------------------------------------------------------------- /examples/reactnative/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/examples/reactnative/android/app/debug.keystore -------------------------------------------------------------------------------- /examples/reactnative/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/examples/reactnative/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /examples/reactnative/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/examples/reactnative/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /examples/reactnative/android/app/src/debug/java/com/reactnative/ReactNativeFlipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/examples/reactnative/android/app/src/debug/java/com/reactnative/ReactNativeFlipper.java -------------------------------------------------------------------------------- /examples/reactnative/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/examples/reactnative/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /examples/reactnative/android/app/src/main/java/com/reactnative/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/examples/reactnative/android/app/src/main/java/com/reactnative/MainActivity.java -------------------------------------------------------------------------------- /examples/reactnative/android/app/src/main/java/com/reactnative/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/examples/reactnative/android/app/src/main/java/com/reactnative/MainApplication.java -------------------------------------------------------------------------------- /examples/reactnative/android/app/src/main/java/com/reactnative/newarchitecture/MainApplicationReactNativeHost.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/examples/reactnative/android/app/src/main/java/com/reactnative/newarchitecture/MainApplicationReactNativeHost.java -------------------------------------------------------------------------------- /examples/reactnative/android/app/src/main/java/com/reactnative/newarchitecture/components/MainComponentsRegistry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/examples/reactnative/android/app/src/main/java/com/reactnative/newarchitecture/components/MainComponentsRegistry.java -------------------------------------------------------------------------------- /examples/reactnative/android/app/src/main/java/com/reactnative/newarchitecture/modules/MainApplicationTurboModuleManagerDelegate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/examples/reactnative/android/app/src/main/java/com/reactnative/newarchitecture/modules/MainApplicationTurboModuleManagerDelegate.java -------------------------------------------------------------------------------- /examples/reactnative/android/app/src/main/jni/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/examples/reactnative/android/app/src/main/jni/CMakeLists.txt -------------------------------------------------------------------------------- /examples/reactnative/android/app/src/main/jni/MainApplicationModuleProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/examples/reactnative/android/app/src/main/jni/MainApplicationModuleProvider.cpp -------------------------------------------------------------------------------- /examples/reactnative/android/app/src/main/jni/MainApplicationModuleProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/examples/reactnative/android/app/src/main/jni/MainApplicationModuleProvider.h -------------------------------------------------------------------------------- /examples/reactnative/android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/examples/reactnative/android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.cpp -------------------------------------------------------------------------------- /examples/reactnative/android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/examples/reactnative/android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.h -------------------------------------------------------------------------------- /examples/reactnative/android/app/src/main/jni/MainComponentsRegistry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/examples/reactnative/android/app/src/main/jni/MainComponentsRegistry.cpp -------------------------------------------------------------------------------- /examples/reactnative/android/app/src/main/jni/MainComponentsRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/examples/reactnative/android/app/src/main/jni/MainComponentsRegistry.h -------------------------------------------------------------------------------- /examples/reactnative/android/app/src/main/jni/OnLoad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/examples/reactnative/android/app/src/main/jni/OnLoad.cpp -------------------------------------------------------------------------------- /examples/reactnative/android/app/src/main/res/drawable/rn_edit_text_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/examples/reactnative/android/app/src/main/res/drawable/rn_edit_text_material.xml -------------------------------------------------------------------------------- /examples/reactnative/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/examples/reactnative/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /examples/reactnative/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/examples/reactnative/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /examples/reactnative/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/examples/reactnative/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /examples/reactnative/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/examples/reactnative/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /examples/reactnative/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/examples/reactnative/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /examples/reactnative/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/examples/reactnative/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /examples/reactnative/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/examples/reactnative/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /examples/reactnative/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/examples/reactnative/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /examples/reactnative/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/examples/reactnative/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /examples/reactnative/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/examples/reactnative/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /examples/reactnative/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/examples/reactnative/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /examples/reactnative/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/examples/reactnative/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /examples/reactnative/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/examples/reactnative/android/build.gradle -------------------------------------------------------------------------------- /examples/reactnative/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/examples/reactnative/android/gradle.properties -------------------------------------------------------------------------------- /examples/reactnative/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/examples/reactnative/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /examples/reactnative/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/examples/reactnative/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /examples/reactnative/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/examples/reactnative/android/gradlew -------------------------------------------------------------------------------- /examples/reactnative/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/examples/reactnative/android/gradlew.bat -------------------------------------------------------------------------------- /examples/reactnative/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/examples/reactnative/android/settings.gradle -------------------------------------------------------------------------------- /examples/reactnative/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/examples/reactnative/app.json -------------------------------------------------------------------------------- /examples/reactnative/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/examples/reactnative/babel.config.js -------------------------------------------------------------------------------- /examples/reactnative/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/examples/reactnative/index.js -------------------------------------------------------------------------------- /examples/reactnative/ios/.xcode.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/examples/reactnative/ios/.xcode.env -------------------------------------------------------------------------------- /examples/reactnative/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/examples/reactnative/ios/Podfile -------------------------------------------------------------------------------- /examples/reactnative/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/examples/reactnative/ios/Podfile.lock -------------------------------------------------------------------------------- /examples/reactnative/ios/reactnative.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/examples/reactnative/ios/reactnative.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /examples/reactnative/ios/reactnative.xcodeproj/xcshareddata/xcschemes/reactnative.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/examples/reactnative/ios/reactnative.xcodeproj/xcshareddata/xcschemes/reactnative.xcscheme -------------------------------------------------------------------------------- /examples/reactnative/ios/reactnative.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/examples/reactnative/ios/reactnative.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /examples/reactnative/ios/reactnative/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/examples/reactnative/ios/reactnative/AppDelegate.h -------------------------------------------------------------------------------- /examples/reactnative/ios/reactnative/AppDelegate.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/examples/reactnative/ios/reactnative/AppDelegate.mm -------------------------------------------------------------------------------- /examples/reactnative/ios/reactnative/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/examples/reactnative/ios/reactnative/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /examples/reactnative/ios/reactnative/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/examples/reactnative/ios/reactnative/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /examples/reactnative/ios/reactnative/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/examples/reactnative/ios/reactnative/Info.plist -------------------------------------------------------------------------------- /examples/reactnative/ios/reactnative/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/examples/reactnative/ios/reactnative/LaunchScreen.storyboard -------------------------------------------------------------------------------- /examples/reactnative/ios/reactnative/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/examples/reactnative/ios/reactnative/main.m -------------------------------------------------------------------------------- /examples/reactnative/ios/reactnativeTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/examples/reactnative/ios/reactnativeTests/Info.plist -------------------------------------------------------------------------------- /examples/reactnative/ios/reactnativeTests/reactnativeTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/examples/reactnative/ios/reactnativeTests/reactnativeTests.m -------------------------------------------------------------------------------- /examples/reactnative/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/examples/reactnative/metro.config.js -------------------------------------------------------------------------------- /examples/reactnative/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/examples/reactnative/package-lock.json -------------------------------------------------------------------------------- /examples/reactnative/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/examples/reactnative/package.json -------------------------------------------------------------------------------- /examples/reactnative/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/examples/reactnative/yarn.lock -------------------------------------------------------------------------------- /lerna.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/lerna.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/package.json -------------------------------------------------------------------------------- /packages/react-native-version-check-expo/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/packages/react-native-version-check-expo/.npmignore -------------------------------------------------------------------------------- /packages/react-native-version-check-expo/.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /packages/react-native-version-check-expo/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/packages/react-native-version-check-expo/CHANGELOG.md -------------------------------------------------------------------------------- /packages/react-native-version-check-expo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/packages/react-native-version-check-expo/LICENSE -------------------------------------------------------------------------------- /packages/react-native-version-check-expo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/packages/react-native-version-check-expo/README.md -------------------------------------------------------------------------------- /packages/react-native-version-check-expo/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/packages/react-native-version-check-expo/index.js -------------------------------------------------------------------------------- /packages/react-native-version-check-expo/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/packages/react-native-version-check-expo/package-lock.json -------------------------------------------------------------------------------- /packages/react-native-version-check-expo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/packages/react-native-version-check-expo/package.json -------------------------------------------------------------------------------- /packages/react-native-version-check-expo/src/ExpoVersionInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/packages/react-native-version-check-expo/src/ExpoVersionInfo.js -------------------------------------------------------------------------------- /packages/react-native-version-check/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/packages/react-native-version-check/.npmignore -------------------------------------------------------------------------------- /packages/react-native-version-check/.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /packages/react-native-version-check/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/packages/react-native-version-check/CHANGELOG.md -------------------------------------------------------------------------------- /packages/react-native-version-check/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/packages/react-native-version-check/LICENSE -------------------------------------------------------------------------------- /packages/react-native-version-check/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/packages/react-native-version-check/README.md -------------------------------------------------------------------------------- /packages/react-native-version-check/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/packages/react-native-version-check/android/build.gradle -------------------------------------------------------------------------------- /packages/react-native-version-check/android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/packages/react-native-version-check/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /packages/react-native-version-check/android/src/main/java/io/xogus/reactnative/versioncheck/RNVersionCheckModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/packages/react-native-version-check/android/src/main/java/io/xogus/reactnative/versioncheck/RNVersionCheckModule.java -------------------------------------------------------------------------------- /packages/react-native-version-check/android/src/main/java/io/xogus/reactnative/versioncheck/RNVersionCheckPackage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/packages/react-native-version-check/android/src/main/java/io/xogus/reactnative/versioncheck/RNVersionCheckPackage.java -------------------------------------------------------------------------------- /packages/react-native-version-check/builder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/packages/react-native-version-check/builder.js -------------------------------------------------------------------------------- /packages/react-native-version-check/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/packages/react-native-version-check/index.js -------------------------------------------------------------------------------- /packages/react-native-version-check/ios/RNVersionCheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/packages/react-native-version-check/ios/RNVersionCheck.h -------------------------------------------------------------------------------- /packages/react-native-version-check/ios/RNVersionCheck.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/packages/react-native-version-check/ios/RNVersionCheck.m -------------------------------------------------------------------------------- /packages/react-native-version-check/ios/RNVersionCheck.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/packages/react-native-version-check/ios/RNVersionCheck.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /packages/react-native-version-check/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/packages/react-native-version-check/package.json -------------------------------------------------------------------------------- /packages/react-native-version-check/react-native-version-check.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/packages/react-native-version-check/react-native-version-check.podspec -------------------------------------------------------------------------------- /packages/react-native-version-check/src/RNVersionInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/packages/react-native-version-check/src/RNVersionInfo.js -------------------------------------------------------------------------------- /packages/react-native-version-check/src/__tests__/getLatestVersion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/packages/react-native-version-check/src/__tests__/getLatestVersion.js -------------------------------------------------------------------------------- /packages/react-native-version-check/src/__tests__/needUpdate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/packages/react-native-version-check/src/__tests__/needUpdate.js -------------------------------------------------------------------------------- /packages/react-native-version-check/src/__tests__/versionInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/packages/react-native-version-check/src/__tests__/versionInfo.js -------------------------------------------------------------------------------- /packages/react-native-version-check/src/getLatestVersion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/packages/react-native-version-check/src/getLatestVersion.js -------------------------------------------------------------------------------- /packages/react-native-version-check/src/getStoreUrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/packages/react-native-version-check/src/getStoreUrl.js -------------------------------------------------------------------------------- /packages/react-native-version-check/src/needUpdate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/packages/react-native-version-check/src/needUpdate.js -------------------------------------------------------------------------------- /packages/react-native-version-check/src/providers/__tests__/playStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/packages/react-native-version-check/src/providers/__tests__/playStore.js -------------------------------------------------------------------------------- /packages/react-native-version-check/src/providers/appStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/packages/react-native-version-check/src/providers/appStore.js -------------------------------------------------------------------------------- /packages/react-native-version-check/src/providers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/packages/react-native-version-check/src/providers/index.js -------------------------------------------------------------------------------- /packages/react-native-version-check/src/providers/playStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/packages/react-native-version-check/src/providers/playStore.js -------------------------------------------------------------------------------- /packages/react-native-version-check/src/providers/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/packages/react-native-version-check/src/providers/types.js -------------------------------------------------------------------------------- /packages/react-native-version-check/src/versionInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/packages/react-native-version-check/src/versionInfo.js -------------------------------------------------------------------------------- /scripts/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/scripts/test.js -------------------------------------------------------------------------------- /setupJest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimxogus/react-native-version-check/HEAD/setupJest.js --------------------------------------------------------------------------------