├── .circleci └── config.yml ├── .eslintignore ├── .eslintrc.js ├── .github ├── labeler.yml └── workflows │ ├── labeler.yml │ └── publish.yml ├── .gitignore ├── .husky └── pre-commit ├── .npmignore ├── .prettierrc ├── LICENSE ├── README.md ├── __tests__ ├── auto-test.js └── index-test.js ├── auto.js ├── babel.config.js ├── index.d.ts ├── index.js ├── js ├── URL.js ├── URLSearchParams.js ├── __tests__ │ ├── URL-test.js │ └── URLSearchParams-test.js └── ios10Fix.js ├── package.json ├── platforms ├── detox │ ├── .detoxrc.js │ ├── TestPolyfill.js │ └── urlPolyfill.test.js └── react-native │ ├── 0.60 │ ├── .buckconfig │ ├── .detoxrc.json │ ├── .eslintrc.js │ ├── .flowconfig │ ├── .gitattributes │ ├── .gitignore │ ├── .prettierrc.js │ ├── .watchmanconfig │ ├── App.js │ ├── __tests__ │ │ └── App-test.js │ ├── android │ │ ├── app │ │ │ ├── _BUCK │ │ │ ├── build.gradle │ │ │ ├── build_defs.bzl │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ ├── androidTest │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── detox │ │ │ │ │ └── DetoxTest.java │ │ │ │ ├── debug │ │ │ │ └── AndroidManifest.xml │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── detox │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ └── MainApplication.java │ │ │ │ └── res │ │ │ │ ├── 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 │ ├── e2e │ │ ├── config.json │ │ ├── init.js │ │ └── url-polyfill.spec.js │ ├── index.js │ ├── ios │ │ ├── Detox-tvOS │ │ │ └── Info.plist │ │ ├── Detox-tvOSTests │ │ │ └── Info.plist │ │ ├── Detox.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ ├── Detox-tvOS.xcscheme │ │ │ │ └── Detox.xcscheme │ │ ├── Detox.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ ├── Detox │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── Base.lproj │ │ │ │ └── LaunchScreen.xib │ │ │ ├── Images.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ ├── Info.plist │ │ │ └── main.m │ │ ├── DetoxTests │ │ │ ├── DetoxTests.m │ │ │ └── Info.plist │ │ ├── Podfile │ │ └── Podfile.lock │ ├── metro.config.js │ ├── package.json │ └── yarn.lock │ ├── 0.68 │ ├── .buckconfig │ ├── .detoxrc.js │ ├── .eslintrc.js │ ├── .flowconfig │ ├── .gitignore │ ├── .prettierrc.js │ ├── .watchmanconfig │ ├── App.js │ ├── Gemfile │ ├── Gemfile.lock │ ├── __tests__ │ │ └── App-test.js │ ├── _bundle │ │ └── config │ ├── _ruby-version │ ├── android │ │ ├── app │ │ │ ├── _BUCK │ │ │ ├── build.gradle │ │ │ ├── build_defs.bzl │ │ │ ├── debug.keystore │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ ├── androidTest │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── detox │ │ │ │ │ └── DetoxTest.java │ │ │ │ ├── debug │ │ │ │ ├── AndroidManifest.xml │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── detox │ │ │ │ │ └── ReactNativeFlipper.java │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── detox │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ ├── MainApplication.java │ │ │ │ │ └── newarchitecture │ │ │ │ │ ├── MainApplicationReactNativeHost.java │ │ │ │ │ ├── components │ │ │ │ │ └── MainComponentsRegistry.java │ │ │ │ │ └── modules │ │ │ │ │ └── MainApplicationTurboModuleManagerDelegate.java │ │ │ │ ├── jni │ │ │ │ ├── Android.mk │ │ │ │ ├── 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 │ │ │ │ └── xml │ │ │ │ └── network_security_config.xml │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle │ ├── app.json │ ├── babel.config.js │ ├── e2e │ │ ├── jest.config.js │ │ └── urlPolyfill.test.js │ ├── index.js │ ├── ios │ │ ├── Detox.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── Detox.xcscheme │ │ ├── Detox.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ ├── Detox │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.mm │ │ │ ├── Images.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ ├── Info.plist │ │ │ ├── LaunchScreen.storyboard │ │ │ └── main.m │ │ ├── DetoxTests │ │ │ ├── DetoxTests.m │ │ │ └── Info.plist │ │ ├── Podfile │ │ └── Podfile.lock │ ├── metro.config.js │ ├── package.json │ ├── patches │ │ └── react-native+0.68.2.patch │ └── yarn.lock │ ├── 0.72 │ ├── .bundle │ │ └── config │ ├── .detoxrc.js │ ├── .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 │ │ │ │ ├── androidTest │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── detox │ │ │ │ │ └── DetoxTest.java │ │ │ │ ├── debug │ │ │ │ ├── AndroidManifest.xml │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── detox │ │ │ │ │ └── ReactNativeFlipper.java │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ │ └── com │ │ │ │ │ │ └── detox │ │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ │ └── MainApplication.java │ │ │ │ └── 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 │ │ │ │ │ └── xml │ │ │ │ │ └── network_security_config.xml │ │ │ │ └── release │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── detox │ │ │ │ └── ReactNativeFlipper.java │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle │ ├── app.json │ ├── babel.config.js │ ├── e2e │ │ ├── jest.config.js │ │ └── urlPolyfill.test.js │ ├── index.js │ ├── ios │ │ ├── .xcode.env │ │ ├── Detox.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── Detox.xcscheme │ │ ├── Detox.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ ├── Detox │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.mm │ │ │ ├── Images.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ ├── Info.plist │ │ │ ├── LaunchScreen.storyboard │ │ │ └── main.m │ │ ├── DetoxTests │ │ │ ├── DetoxTests.m │ │ │ └── Info.plist │ │ ├── Podfile │ │ ├── Podfile.lock │ │ └── PrivacyInfo.xcprivacy │ ├── jest.config.js │ ├── metro.config.js │ ├── package.json │ ├── tsconfig.json │ └── yarn.lock │ ├── 0.78 │ ├── .bundle │ │ └── config │ ├── .detoxrc.js │ ├── .eslintrc.js │ ├── .gitignore │ ├── .prettierrc.js │ ├── .watchmanconfig │ ├── App.tsx │ ├── Gemfile │ ├── README.md │ ├── __tests__ │ │ └── App.test.tsx │ ├── android │ │ ├── app │ │ │ ├── build.gradle │ │ │ ├── debug.keystore │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ ├── androidTest │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── Detox │ │ │ │ │ └── DetoxTest.java │ │ │ │ ├── debug │ │ │ │ └── AndroidManifest.xml │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── detox │ │ │ │ │ ├── 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 │ │ │ │ └── xml │ │ │ │ └── network_security_config.xml │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle │ ├── app.json │ ├── babel.config.js │ ├── e2e │ │ ├── jest.config.js │ │ └── urlPolyfill.test.js │ ├── index.js │ ├── ios │ │ ├── .xcode.env │ │ ├── Detox.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── Detox.xcscheme │ │ ├── Detox.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ ├── Detox │ │ │ ├── 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.json │ ├── tsconfig.json │ └── yarn.lock │ └── 0.81 │ ├── .bundle │ └── config │ ├── .detoxrc.js │ ├── .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 │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── Detox │ │ │ │ └── DetoxTest.java │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── detox │ │ │ │ ├── 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 │ │ │ └── xml │ │ │ └── network_security_config.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle │ ├── app.json │ ├── babel.config.js │ ├── e2e │ ├── jest.config.js │ └── urlPolyfill.test.js │ ├── index.js │ ├── ios │ ├── .xcode.env │ ├── Detox.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Detox.xcscheme │ ├── Detox.xcworkspace │ │ └── contents.xcworkspacedata │ ├── Detox │ │ ├── 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.json │ ├── tsconfig.json │ └── yarn.lock ├── scripts └── bundle-size.js └── yarn.lock /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | /platforms/ 2 | index.d.ts 3 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/.github/labeler.yml -------------------------------------------------------------------------------- /.github/workflows/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/.github/workflows/labeler.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | npx lint-staged 5 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | platforms 2 | *.tgz 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/auto-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/__tests__/auto-test.js -------------------------------------------------------------------------------- /__tests__/index-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/__tests__/index-test.js -------------------------------------------------------------------------------- /auto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/auto.js -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/babel.config.js -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/index.d.ts -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/index.js -------------------------------------------------------------------------------- /js/URL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/js/URL.js -------------------------------------------------------------------------------- /js/URLSearchParams.js: -------------------------------------------------------------------------------- 1 | export {URLSearchParams} from 'whatwg-url-without-unicode'; 2 | -------------------------------------------------------------------------------- /js/__tests__/URL-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/js/__tests__/URL-test.js -------------------------------------------------------------------------------- /js/__tests__/URLSearchParams-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/js/__tests__/URLSearchParams-test.js -------------------------------------------------------------------------------- /js/ios10Fix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/js/ios10Fix.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/package.json -------------------------------------------------------------------------------- /platforms/detox/.detoxrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/detox/.detoxrc.js -------------------------------------------------------------------------------- /platforms/detox/TestPolyfill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/detox/TestPolyfill.js -------------------------------------------------------------------------------- /platforms/detox/urlPolyfill.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/detox/urlPolyfill.test.js -------------------------------------------------------------------------------- /platforms/react-native/0.60/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.60/.buckconfig -------------------------------------------------------------------------------- /platforms/react-native/0.60/.detoxrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.60/.detoxrc.json -------------------------------------------------------------------------------- /platforms/react-native/0.60/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native-community', 4 | }; 5 | -------------------------------------------------------------------------------- /platforms/react-native/0.60/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.60/.flowconfig -------------------------------------------------------------------------------- /platforms/react-native/0.60/.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /platforms/react-native/0.60/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.60/.gitignore -------------------------------------------------------------------------------- /platforms/react-native/0.60/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.60/.prettierrc.js -------------------------------------------------------------------------------- /platforms/react-native/0.60/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /platforms/react-native/0.60/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.60/App.js -------------------------------------------------------------------------------- /platforms/react-native/0.60/__tests__/App-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.60/__tests__/App-test.js -------------------------------------------------------------------------------- /platforms/react-native/0.60/android/app/_BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.60/android/app/_BUCK -------------------------------------------------------------------------------- /platforms/react-native/0.60/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.60/android/app/build.gradle -------------------------------------------------------------------------------- /platforms/react-native/0.60/android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.60/android/app/build_defs.bzl -------------------------------------------------------------------------------- /platforms/react-native/0.60/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.60/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /platforms/react-native/0.60/android/app/src/androidTest/java/com/detox/DetoxTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.60/android/app/src/androidTest/java/com/detox/DetoxTest.java -------------------------------------------------------------------------------- /platforms/react-native/0.60/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.60/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /platforms/react-native/0.60/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.60/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /platforms/react-native/0.60/android/app/src/main/java/com/detox/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.60/android/app/src/main/java/com/detox/MainActivity.java -------------------------------------------------------------------------------- /platforms/react-native/0.60/android/app/src/main/java/com/detox/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.60/android/app/src/main/java/com/detox/MainApplication.java -------------------------------------------------------------------------------- /platforms/react-native/0.60/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.60/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /platforms/react-native/0.60/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.60/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /platforms/react-native/0.60/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.60/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /platforms/react-native/0.60/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.60/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /platforms/react-native/0.60/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.60/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /platforms/react-native/0.60/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.60/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /platforms/react-native/0.60/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.60/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /platforms/react-native/0.60/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.60/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /platforms/react-native/0.60/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.60/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /platforms/react-native/0.60/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.60/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /platforms/react-native/0.60/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.60/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /platforms/react-native/0.60/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.60/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /platforms/react-native/0.60/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.60/android/build.gradle -------------------------------------------------------------------------------- /platforms/react-native/0.60/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.60/android/gradle.properties -------------------------------------------------------------------------------- /platforms/react-native/0.60/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.60/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /platforms/react-native/0.60/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.60/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /platforms/react-native/0.60/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.60/android/gradlew -------------------------------------------------------------------------------- /platforms/react-native/0.60/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.60/android/gradlew.bat -------------------------------------------------------------------------------- /platforms/react-native/0.60/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.60/android/settings.gradle -------------------------------------------------------------------------------- /platforms/react-native/0.60/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.60/app.json -------------------------------------------------------------------------------- /platforms/react-native/0.60/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.60/babel.config.js -------------------------------------------------------------------------------- /platforms/react-native/0.60/e2e/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.60/e2e/config.json -------------------------------------------------------------------------------- /platforms/react-native/0.60/e2e/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.60/e2e/init.js -------------------------------------------------------------------------------- /platforms/react-native/0.60/e2e/url-polyfill.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.60/e2e/url-polyfill.spec.js -------------------------------------------------------------------------------- /platforms/react-native/0.60/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.60/index.js -------------------------------------------------------------------------------- /platforms/react-native/0.60/ios/Detox-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.60/ios/Detox-tvOS/Info.plist -------------------------------------------------------------------------------- /platforms/react-native/0.60/ios/Detox-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.60/ios/Detox-tvOSTests/Info.plist -------------------------------------------------------------------------------- /platforms/react-native/0.60/ios/Detox.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.60/ios/Detox.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /platforms/react-native/0.60/ios/Detox.xcodeproj/xcshareddata/xcschemes/Detox-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.60/ios/Detox.xcodeproj/xcshareddata/xcschemes/Detox-tvOS.xcscheme -------------------------------------------------------------------------------- /platforms/react-native/0.60/ios/Detox.xcodeproj/xcshareddata/xcschemes/Detox.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.60/ios/Detox.xcodeproj/xcshareddata/xcschemes/Detox.xcscheme -------------------------------------------------------------------------------- /platforms/react-native/0.60/ios/Detox.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.60/ios/Detox.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /platforms/react-native/0.60/ios/Detox.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.60/ios/Detox.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /platforms/react-native/0.60/ios/Detox/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.60/ios/Detox/AppDelegate.h -------------------------------------------------------------------------------- /platforms/react-native/0.60/ios/Detox/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.60/ios/Detox/AppDelegate.m -------------------------------------------------------------------------------- /platforms/react-native/0.60/ios/Detox/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.60/ios/Detox/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /platforms/react-native/0.60/ios/Detox/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.60/ios/Detox/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /platforms/react-native/0.60/ios/Detox/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.60/ios/Detox/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /platforms/react-native/0.60/ios/Detox/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.60/ios/Detox/Info.plist -------------------------------------------------------------------------------- /platforms/react-native/0.60/ios/Detox/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.60/ios/Detox/main.m -------------------------------------------------------------------------------- /platforms/react-native/0.60/ios/DetoxTests/DetoxTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.60/ios/DetoxTests/DetoxTests.m -------------------------------------------------------------------------------- /platforms/react-native/0.60/ios/DetoxTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.60/ios/DetoxTests/Info.plist -------------------------------------------------------------------------------- /platforms/react-native/0.60/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.60/ios/Podfile -------------------------------------------------------------------------------- /platforms/react-native/0.60/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.60/ios/Podfile.lock -------------------------------------------------------------------------------- /platforms/react-native/0.60/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.60/metro.config.js -------------------------------------------------------------------------------- /platforms/react-native/0.60/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.60/package.json -------------------------------------------------------------------------------- /platforms/react-native/0.60/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.60/yarn.lock -------------------------------------------------------------------------------- /platforms/react-native/0.68/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.68/.buckconfig -------------------------------------------------------------------------------- /platforms/react-native/0.68/.detoxrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.68/.detoxrc.js -------------------------------------------------------------------------------- /platforms/react-native/0.68/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native-community', 4 | }; 5 | -------------------------------------------------------------------------------- /platforms/react-native/0.68/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.68/.flowconfig -------------------------------------------------------------------------------- /platforms/react-native/0.68/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.68/.gitignore -------------------------------------------------------------------------------- /platforms/react-native/0.68/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.68/.prettierrc.js -------------------------------------------------------------------------------- /platforms/react-native/0.68/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /platforms/react-native/0.68/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.68/App.js -------------------------------------------------------------------------------- /platforms/react-native/0.68/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.68/Gemfile -------------------------------------------------------------------------------- /platforms/react-native/0.68/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.68/Gemfile.lock -------------------------------------------------------------------------------- /platforms/react-native/0.68/__tests__/App-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.68/__tests__/App-test.js -------------------------------------------------------------------------------- /platforms/react-native/0.68/_bundle/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.68/_bundle/config -------------------------------------------------------------------------------- /platforms/react-native/0.68/_ruby-version: -------------------------------------------------------------------------------- 1 | 2.7.4 2 | -------------------------------------------------------------------------------- /platforms/react-native/0.68/android/app/_BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.68/android/app/_BUCK -------------------------------------------------------------------------------- /platforms/react-native/0.68/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.68/android/app/build.gradle -------------------------------------------------------------------------------- /platforms/react-native/0.68/android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.68/android/app/build_defs.bzl -------------------------------------------------------------------------------- /platforms/react-native/0.68/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.68/android/app/debug.keystore -------------------------------------------------------------------------------- /platforms/react-native/0.68/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.68/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /platforms/react-native/0.68/android/app/src/androidTest/java/com/detox/DetoxTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.68/android/app/src/androidTest/java/com/detox/DetoxTest.java -------------------------------------------------------------------------------- /platforms/react-native/0.68/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.68/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /platforms/react-native/0.68/android/app/src/debug/java/com/detox/ReactNativeFlipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.68/android/app/src/debug/java/com/detox/ReactNativeFlipper.java -------------------------------------------------------------------------------- /platforms/react-native/0.68/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.68/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /platforms/react-native/0.68/android/app/src/main/java/com/detox/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.68/android/app/src/main/java/com/detox/MainActivity.java -------------------------------------------------------------------------------- /platforms/react-native/0.68/android/app/src/main/java/com/detox/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.68/android/app/src/main/java/com/detox/MainApplication.java -------------------------------------------------------------------------------- /platforms/react-native/0.68/android/app/src/main/java/com/detox/newarchitecture/MainApplicationReactNativeHost.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.68/android/app/src/main/java/com/detox/newarchitecture/MainApplicationReactNativeHost.java -------------------------------------------------------------------------------- /platforms/react-native/0.68/android/app/src/main/java/com/detox/newarchitecture/components/MainComponentsRegistry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.68/android/app/src/main/java/com/detox/newarchitecture/components/MainComponentsRegistry.java -------------------------------------------------------------------------------- /platforms/react-native/0.68/android/app/src/main/java/com/detox/newarchitecture/modules/MainApplicationTurboModuleManagerDelegate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.68/android/app/src/main/java/com/detox/newarchitecture/modules/MainApplicationTurboModuleManagerDelegate.java -------------------------------------------------------------------------------- /platforms/react-native/0.68/android/app/src/main/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.68/android/app/src/main/jni/Android.mk -------------------------------------------------------------------------------- /platforms/react-native/0.68/android/app/src/main/jni/MainApplicationModuleProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.68/android/app/src/main/jni/MainApplicationModuleProvider.cpp -------------------------------------------------------------------------------- /platforms/react-native/0.68/android/app/src/main/jni/MainApplicationModuleProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.68/android/app/src/main/jni/MainApplicationModuleProvider.h -------------------------------------------------------------------------------- /platforms/react-native/0.68/android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.68/android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.cpp -------------------------------------------------------------------------------- /platforms/react-native/0.68/android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.68/android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.h -------------------------------------------------------------------------------- /platforms/react-native/0.68/android/app/src/main/jni/MainComponentsRegistry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.68/android/app/src/main/jni/MainComponentsRegistry.cpp -------------------------------------------------------------------------------- /platforms/react-native/0.68/android/app/src/main/jni/MainComponentsRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.68/android/app/src/main/jni/MainComponentsRegistry.h -------------------------------------------------------------------------------- /platforms/react-native/0.68/android/app/src/main/jni/OnLoad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.68/android/app/src/main/jni/OnLoad.cpp -------------------------------------------------------------------------------- /platforms/react-native/0.68/android/app/src/main/res/drawable/rn_edit_text_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.68/android/app/src/main/res/drawable/rn_edit_text_material.xml -------------------------------------------------------------------------------- /platforms/react-native/0.68/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.68/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /platforms/react-native/0.68/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.68/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /platforms/react-native/0.68/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.68/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /platforms/react-native/0.68/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.68/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /platforms/react-native/0.68/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.68/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /platforms/react-native/0.68/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.68/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /platforms/react-native/0.68/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.68/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /platforms/react-native/0.68/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.68/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /platforms/react-native/0.68/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.68/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /platforms/react-native/0.68/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.68/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /platforms/react-native/0.68/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.68/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /platforms/react-native/0.68/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.68/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /platforms/react-native/0.68/android/app/src/main/res/xml/network_security_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.68/android/app/src/main/res/xml/network_security_config.xml -------------------------------------------------------------------------------- /platforms/react-native/0.68/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.68/android/build.gradle -------------------------------------------------------------------------------- /platforms/react-native/0.68/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.68/android/gradle.properties -------------------------------------------------------------------------------- /platforms/react-native/0.68/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.68/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /platforms/react-native/0.68/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.68/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /platforms/react-native/0.68/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.68/android/gradlew -------------------------------------------------------------------------------- /platforms/react-native/0.68/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.68/android/gradlew.bat -------------------------------------------------------------------------------- /platforms/react-native/0.68/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.68/android/settings.gradle -------------------------------------------------------------------------------- /platforms/react-native/0.68/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.68/app.json -------------------------------------------------------------------------------- /platforms/react-native/0.68/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.68/babel.config.js -------------------------------------------------------------------------------- /platforms/react-native/0.68/e2e/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.68/e2e/jest.config.js -------------------------------------------------------------------------------- /platforms/react-native/0.68/e2e/urlPolyfill.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.68/e2e/urlPolyfill.test.js -------------------------------------------------------------------------------- /platforms/react-native/0.68/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.68/index.js -------------------------------------------------------------------------------- /platforms/react-native/0.68/ios/Detox.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.68/ios/Detox.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /platforms/react-native/0.68/ios/Detox.xcodeproj/xcshareddata/xcschemes/Detox.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.68/ios/Detox.xcodeproj/xcshareddata/xcschemes/Detox.xcscheme -------------------------------------------------------------------------------- /platforms/react-native/0.68/ios/Detox.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.68/ios/Detox.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /platforms/react-native/0.68/ios/Detox.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.68/ios/Detox.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /platforms/react-native/0.68/ios/Detox/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.68/ios/Detox/AppDelegate.h -------------------------------------------------------------------------------- /platforms/react-native/0.68/ios/Detox/AppDelegate.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.68/ios/Detox/AppDelegate.mm -------------------------------------------------------------------------------- /platforms/react-native/0.68/ios/Detox/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.68/ios/Detox/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /platforms/react-native/0.68/ios/Detox/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.68/ios/Detox/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /platforms/react-native/0.68/ios/Detox/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.68/ios/Detox/Info.plist -------------------------------------------------------------------------------- /platforms/react-native/0.68/ios/Detox/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.68/ios/Detox/LaunchScreen.storyboard -------------------------------------------------------------------------------- /platforms/react-native/0.68/ios/Detox/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.68/ios/Detox/main.m -------------------------------------------------------------------------------- /platforms/react-native/0.68/ios/DetoxTests/DetoxTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.68/ios/DetoxTests/DetoxTests.m -------------------------------------------------------------------------------- /platforms/react-native/0.68/ios/DetoxTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.68/ios/DetoxTests/Info.plist -------------------------------------------------------------------------------- /platforms/react-native/0.68/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.68/ios/Podfile -------------------------------------------------------------------------------- /platforms/react-native/0.68/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.68/ios/Podfile.lock -------------------------------------------------------------------------------- /platforms/react-native/0.68/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.68/metro.config.js -------------------------------------------------------------------------------- /platforms/react-native/0.68/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.68/package.json -------------------------------------------------------------------------------- /platforms/react-native/0.68/patches/react-native+0.68.2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.68/patches/react-native+0.68.2.patch -------------------------------------------------------------------------------- /platforms/react-native/0.68/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.68/yarn.lock -------------------------------------------------------------------------------- /platforms/react-native/0.72/.bundle/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.72/.bundle/config -------------------------------------------------------------------------------- /platforms/react-native/0.72/.detoxrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.72/.detoxrc.js -------------------------------------------------------------------------------- /platforms/react-native/0.72/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native', 4 | }; 5 | -------------------------------------------------------------------------------- /platforms/react-native/0.72/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.72/.gitignore -------------------------------------------------------------------------------- /platforms/react-native/0.72/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.72/.prettierrc.js -------------------------------------------------------------------------------- /platforms/react-native/0.72/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /platforms/react-native/0.72/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.72/App.tsx -------------------------------------------------------------------------------- /platforms/react-native/0.72/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.72/Gemfile -------------------------------------------------------------------------------- /platforms/react-native/0.72/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.72/Gemfile.lock -------------------------------------------------------------------------------- /platforms/react-native/0.72/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.72/README.md -------------------------------------------------------------------------------- /platforms/react-native/0.72/__tests__/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.72/__tests__/App.test.tsx -------------------------------------------------------------------------------- /platforms/react-native/0.72/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.72/android/app/build.gradle -------------------------------------------------------------------------------- /platforms/react-native/0.72/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.72/android/app/debug.keystore -------------------------------------------------------------------------------- /platforms/react-native/0.72/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.72/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /platforms/react-native/0.72/android/app/src/androidTest/java/com/detox/DetoxTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.72/android/app/src/androidTest/java/com/detox/DetoxTest.java -------------------------------------------------------------------------------- /platforms/react-native/0.72/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.72/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /platforms/react-native/0.72/android/app/src/debug/java/com/detox/ReactNativeFlipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.72/android/app/src/debug/java/com/detox/ReactNativeFlipper.java -------------------------------------------------------------------------------- /platforms/react-native/0.72/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.72/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /platforms/react-native/0.72/android/app/src/main/java/com/detox/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.72/android/app/src/main/java/com/detox/MainActivity.java -------------------------------------------------------------------------------- /platforms/react-native/0.72/android/app/src/main/java/com/detox/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.72/android/app/src/main/java/com/detox/MainApplication.java -------------------------------------------------------------------------------- /platforms/react-native/0.72/android/app/src/main/res/drawable/rn_edit_text_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.72/android/app/src/main/res/drawable/rn_edit_text_material.xml -------------------------------------------------------------------------------- /platforms/react-native/0.72/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.72/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /platforms/react-native/0.72/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.72/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /platforms/react-native/0.72/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.72/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /platforms/react-native/0.72/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.72/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /platforms/react-native/0.72/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.72/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /platforms/react-native/0.72/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.72/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /platforms/react-native/0.72/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.72/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /platforms/react-native/0.72/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.72/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /platforms/react-native/0.72/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.72/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /platforms/react-native/0.72/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.72/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /platforms/react-native/0.72/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.72/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /platforms/react-native/0.72/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.72/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /platforms/react-native/0.72/android/app/src/main/res/xml/network_security_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.72/android/app/src/main/res/xml/network_security_config.xml -------------------------------------------------------------------------------- /platforms/react-native/0.72/android/app/src/release/java/com/detox/ReactNativeFlipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.72/android/app/src/release/java/com/detox/ReactNativeFlipper.java -------------------------------------------------------------------------------- /platforms/react-native/0.72/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.72/android/build.gradle -------------------------------------------------------------------------------- /platforms/react-native/0.72/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.72/android/gradle.properties -------------------------------------------------------------------------------- /platforms/react-native/0.72/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.72/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /platforms/react-native/0.72/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.72/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /platforms/react-native/0.72/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.72/android/gradlew -------------------------------------------------------------------------------- /platforms/react-native/0.72/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.72/android/gradlew.bat -------------------------------------------------------------------------------- /platforms/react-native/0.72/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.72/android/settings.gradle -------------------------------------------------------------------------------- /platforms/react-native/0.72/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.72/app.json -------------------------------------------------------------------------------- /platforms/react-native/0.72/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.72/babel.config.js -------------------------------------------------------------------------------- /platforms/react-native/0.72/e2e/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.72/e2e/jest.config.js -------------------------------------------------------------------------------- /platforms/react-native/0.72/e2e/urlPolyfill.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.72/e2e/urlPolyfill.test.js -------------------------------------------------------------------------------- /platforms/react-native/0.72/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.72/index.js -------------------------------------------------------------------------------- /platforms/react-native/0.72/ios/.xcode.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.72/ios/.xcode.env -------------------------------------------------------------------------------- /platforms/react-native/0.72/ios/Detox.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.72/ios/Detox.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /platforms/react-native/0.72/ios/Detox.xcodeproj/xcshareddata/xcschemes/Detox.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.72/ios/Detox.xcodeproj/xcshareddata/xcschemes/Detox.xcscheme -------------------------------------------------------------------------------- /platforms/react-native/0.72/ios/Detox.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.72/ios/Detox.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /platforms/react-native/0.72/ios/Detox/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.72/ios/Detox/AppDelegate.h -------------------------------------------------------------------------------- /platforms/react-native/0.72/ios/Detox/AppDelegate.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.72/ios/Detox/AppDelegate.mm -------------------------------------------------------------------------------- /platforms/react-native/0.72/ios/Detox/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.72/ios/Detox/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /platforms/react-native/0.72/ios/Detox/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.72/ios/Detox/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /platforms/react-native/0.72/ios/Detox/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.72/ios/Detox/Info.plist -------------------------------------------------------------------------------- /platforms/react-native/0.72/ios/Detox/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.72/ios/Detox/LaunchScreen.storyboard -------------------------------------------------------------------------------- /platforms/react-native/0.72/ios/Detox/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.72/ios/Detox/main.m -------------------------------------------------------------------------------- /platforms/react-native/0.72/ios/DetoxTests/DetoxTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.72/ios/DetoxTests/DetoxTests.m -------------------------------------------------------------------------------- /platforms/react-native/0.72/ios/DetoxTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.72/ios/DetoxTests/Info.plist -------------------------------------------------------------------------------- /platforms/react-native/0.72/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.72/ios/Podfile -------------------------------------------------------------------------------- /platforms/react-native/0.72/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.72/ios/Podfile.lock -------------------------------------------------------------------------------- /platforms/react-native/0.72/ios/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.72/ios/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /platforms/react-native/0.72/jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | preset: 'react-native', 3 | }; 4 | -------------------------------------------------------------------------------- /platforms/react-native/0.72/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.72/metro.config.js -------------------------------------------------------------------------------- /platforms/react-native/0.72/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.72/package.json -------------------------------------------------------------------------------- /platforms/react-native/0.72/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.72/tsconfig.json -------------------------------------------------------------------------------- /platforms/react-native/0.72/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.72/yarn.lock -------------------------------------------------------------------------------- /platforms/react-native/0.78/.bundle/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.78/.bundle/config -------------------------------------------------------------------------------- /platforms/react-native/0.78/.detoxrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.78/.detoxrc.js -------------------------------------------------------------------------------- /platforms/react-native/0.78/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native', 4 | }; 5 | -------------------------------------------------------------------------------- /platforms/react-native/0.78/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.78/.gitignore -------------------------------------------------------------------------------- /platforms/react-native/0.78/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.78/.prettierrc.js -------------------------------------------------------------------------------- /platforms/react-native/0.78/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /platforms/react-native/0.78/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.78/App.tsx -------------------------------------------------------------------------------- /platforms/react-native/0.78/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.78/Gemfile -------------------------------------------------------------------------------- /platforms/react-native/0.78/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.78/README.md -------------------------------------------------------------------------------- /platforms/react-native/0.78/__tests__/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.78/__tests__/App.test.tsx -------------------------------------------------------------------------------- /platforms/react-native/0.78/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.78/android/app/build.gradle -------------------------------------------------------------------------------- /platforms/react-native/0.78/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.78/android/app/debug.keystore -------------------------------------------------------------------------------- /platforms/react-native/0.78/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.78/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /platforms/react-native/0.78/android/app/src/androidTest/java/com/Detox/DetoxTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.78/android/app/src/androidTest/java/com/Detox/DetoxTest.java -------------------------------------------------------------------------------- /platforms/react-native/0.78/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.78/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /platforms/react-native/0.78/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.78/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /platforms/react-native/0.78/android/app/src/main/java/com/detox/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.78/android/app/src/main/java/com/detox/MainActivity.kt -------------------------------------------------------------------------------- /platforms/react-native/0.78/android/app/src/main/java/com/detox/MainApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.78/android/app/src/main/java/com/detox/MainApplication.kt -------------------------------------------------------------------------------- /platforms/react-native/0.78/android/app/src/main/res/drawable/rn_edit_text_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.78/android/app/src/main/res/drawable/rn_edit_text_material.xml -------------------------------------------------------------------------------- /platforms/react-native/0.78/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.78/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /platforms/react-native/0.78/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.78/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /platforms/react-native/0.78/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.78/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /platforms/react-native/0.78/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.78/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /platforms/react-native/0.78/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.78/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /platforms/react-native/0.78/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.78/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /platforms/react-native/0.78/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.78/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /platforms/react-native/0.78/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.78/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /platforms/react-native/0.78/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.78/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /platforms/react-native/0.78/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.78/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /platforms/react-native/0.78/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.78/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /platforms/react-native/0.78/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.78/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /platforms/react-native/0.78/android/app/src/main/res/xml/network_security_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.78/android/app/src/main/res/xml/network_security_config.xml -------------------------------------------------------------------------------- /platforms/react-native/0.78/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.78/android/build.gradle -------------------------------------------------------------------------------- /platforms/react-native/0.78/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.78/android/gradle.properties -------------------------------------------------------------------------------- /platforms/react-native/0.78/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.78/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /platforms/react-native/0.78/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.78/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /platforms/react-native/0.78/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.78/android/gradlew -------------------------------------------------------------------------------- /platforms/react-native/0.78/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.78/android/gradlew.bat -------------------------------------------------------------------------------- /platforms/react-native/0.78/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.78/android/settings.gradle -------------------------------------------------------------------------------- /platforms/react-native/0.78/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.78/app.json -------------------------------------------------------------------------------- /platforms/react-native/0.78/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.78/babel.config.js -------------------------------------------------------------------------------- /platforms/react-native/0.78/e2e/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.78/e2e/jest.config.js -------------------------------------------------------------------------------- /platforms/react-native/0.78/e2e/urlPolyfill.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.78/e2e/urlPolyfill.test.js -------------------------------------------------------------------------------- /platforms/react-native/0.78/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.78/index.js -------------------------------------------------------------------------------- /platforms/react-native/0.78/ios/.xcode.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.78/ios/.xcode.env -------------------------------------------------------------------------------- /platforms/react-native/0.78/ios/Detox.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.78/ios/Detox.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /platforms/react-native/0.78/ios/Detox.xcodeproj/xcshareddata/xcschemes/Detox.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.78/ios/Detox.xcodeproj/xcshareddata/xcschemes/Detox.xcscheme -------------------------------------------------------------------------------- /platforms/react-native/0.78/ios/Detox.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.78/ios/Detox.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /platforms/react-native/0.78/ios/Detox/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.78/ios/Detox/AppDelegate.swift -------------------------------------------------------------------------------- /platforms/react-native/0.78/ios/Detox/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.78/ios/Detox/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /platforms/react-native/0.78/ios/Detox/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.78/ios/Detox/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /platforms/react-native/0.78/ios/Detox/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.78/ios/Detox/Info.plist -------------------------------------------------------------------------------- /platforms/react-native/0.78/ios/Detox/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.78/ios/Detox/LaunchScreen.storyboard -------------------------------------------------------------------------------- /platforms/react-native/0.78/ios/Detox/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.78/ios/Detox/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /platforms/react-native/0.78/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.78/ios/Podfile -------------------------------------------------------------------------------- /platforms/react-native/0.78/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.78/ios/Podfile.lock -------------------------------------------------------------------------------- /platforms/react-native/0.78/jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | preset: 'react-native', 3 | }; 4 | -------------------------------------------------------------------------------- /platforms/react-native/0.78/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.78/metro.config.js -------------------------------------------------------------------------------- /platforms/react-native/0.78/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.78/package.json -------------------------------------------------------------------------------- /platforms/react-native/0.78/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.78/tsconfig.json -------------------------------------------------------------------------------- /platforms/react-native/0.78/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.78/yarn.lock -------------------------------------------------------------------------------- /platforms/react-native/0.81/.bundle/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.81/.bundle/config -------------------------------------------------------------------------------- /platforms/react-native/0.81/.detoxrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.81/.detoxrc.js -------------------------------------------------------------------------------- /platforms/react-native/0.81/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native', 4 | }; 5 | -------------------------------------------------------------------------------- /platforms/react-native/0.81/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.81/.gitignore -------------------------------------------------------------------------------- /platforms/react-native/0.81/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.81/.prettierrc.js -------------------------------------------------------------------------------- /platforms/react-native/0.81/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /platforms/react-native/0.81/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.81/App.tsx -------------------------------------------------------------------------------- /platforms/react-native/0.81/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.81/Gemfile -------------------------------------------------------------------------------- /platforms/react-native/0.81/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.81/Gemfile.lock -------------------------------------------------------------------------------- /platforms/react-native/0.81/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.81/README.md -------------------------------------------------------------------------------- /platforms/react-native/0.81/__tests__/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.81/__tests__/App.test.tsx -------------------------------------------------------------------------------- /platforms/react-native/0.81/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.81/android/app/build.gradle -------------------------------------------------------------------------------- /platforms/react-native/0.81/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.81/android/app/debug.keystore -------------------------------------------------------------------------------- /platforms/react-native/0.81/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.81/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /platforms/react-native/0.81/android/app/src/androidTest/java/com/Detox/DetoxTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.81/android/app/src/androidTest/java/com/Detox/DetoxTest.java -------------------------------------------------------------------------------- /platforms/react-native/0.81/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.81/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /platforms/react-native/0.81/android/app/src/main/java/com/detox/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.81/android/app/src/main/java/com/detox/MainActivity.kt -------------------------------------------------------------------------------- /platforms/react-native/0.81/android/app/src/main/java/com/detox/MainApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.81/android/app/src/main/java/com/detox/MainApplication.kt -------------------------------------------------------------------------------- /platforms/react-native/0.81/android/app/src/main/res/drawable/rn_edit_text_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.81/android/app/src/main/res/drawable/rn_edit_text_material.xml -------------------------------------------------------------------------------- /platforms/react-native/0.81/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.81/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /platforms/react-native/0.81/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.81/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /platforms/react-native/0.81/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.81/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /platforms/react-native/0.81/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.81/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /platforms/react-native/0.81/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.81/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /platforms/react-native/0.81/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.81/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /platforms/react-native/0.81/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.81/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /platforms/react-native/0.81/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.81/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /platforms/react-native/0.81/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.81/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /platforms/react-native/0.81/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.81/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /platforms/react-native/0.81/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.81/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /platforms/react-native/0.81/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.81/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /platforms/react-native/0.81/android/app/src/main/res/xml/network_security_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.81/android/app/src/main/res/xml/network_security_config.xml -------------------------------------------------------------------------------- /platforms/react-native/0.81/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.81/android/build.gradle -------------------------------------------------------------------------------- /platforms/react-native/0.81/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.81/android/gradle.properties -------------------------------------------------------------------------------- /platforms/react-native/0.81/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.81/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /platforms/react-native/0.81/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.81/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /platforms/react-native/0.81/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.81/android/gradlew -------------------------------------------------------------------------------- /platforms/react-native/0.81/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.81/android/gradlew.bat -------------------------------------------------------------------------------- /platforms/react-native/0.81/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.81/android/settings.gradle -------------------------------------------------------------------------------- /platforms/react-native/0.81/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.81/app.json -------------------------------------------------------------------------------- /platforms/react-native/0.81/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.81/babel.config.js -------------------------------------------------------------------------------- /platforms/react-native/0.81/e2e/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.81/e2e/jest.config.js -------------------------------------------------------------------------------- /platforms/react-native/0.81/e2e/urlPolyfill.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.81/e2e/urlPolyfill.test.js -------------------------------------------------------------------------------- /platforms/react-native/0.81/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.81/index.js -------------------------------------------------------------------------------- /platforms/react-native/0.81/ios/.xcode.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.81/ios/.xcode.env -------------------------------------------------------------------------------- /platforms/react-native/0.81/ios/Detox.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.81/ios/Detox.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /platforms/react-native/0.81/ios/Detox.xcodeproj/xcshareddata/xcschemes/Detox.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.81/ios/Detox.xcodeproj/xcshareddata/xcschemes/Detox.xcscheme -------------------------------------------------------------------------------- /platforms/react-native/0.81/ios/Detox.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.81/ios/Detox.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /platforms/react-native/0.81/ios/Detox/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.81/ios/Detox/AppDelegate.swift -------------------------------------------------------------------------------- /platforms/react-native/0.81/ios/Detox/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.81/ios/Detox/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /platforms/react-native/0.81/ios/Detox/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.81/ios/Detox/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /platforms/react-native/0.81/ios/Detox/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.81/ios/Detox/Info.plist -------------------------------------------------------------------------------- /platforms/react-native/0.81/ios/Detox/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.81/ios/Detox/LaunchScreen.storyboard -------------------------------------------------------------------------------- /platforms/react-native/0.81/ios/Detox/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.81/ios/Detox/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /platforms/react-native/0.81/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.81/ios/Podfile -------------------------------------------------------------------------------- /platforms/react-native/0.81/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.81/ios/Podfile.lock -------------------------------------------------------------------------------- /platforms/react-native/0.81/jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | preset: 'react-native', 3 | }; 4 | -------------------------------------------------------------------------------- /platforms/react-native/0.81/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.81/metro.config.js -------------------------------------------------------------------------------- /platforms/react-native/0.81/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.81/package.json -------------------------------------------------------------------------------- /platforms/react-native/0.81/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.81/tsconfig.json -------------------------------------------------------------------------------- /platforms/react-native/0.81/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/platforms/react-native/0.81/yarn.lock -------------------------------------------------------------------------------- /scripts/bundle-size.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/scripts/bundle-size.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charpeni/react-native-url-polyfill/HEAD/yarn.lock --------------------------------------------------------------------------------