From a8ec2fa3bc4a038582989242aaf1d5cf1fcf319e Mon Sep 17 00:00:00 2001 From: nachosan Date: Wed, 28 Sep 2022 17:46:25 -0300 Subject: [PATCH 1/3] Pollyfilled URL --- index.js | 1 + package.json | 1 + yarn.lock | 16 ++++++++++++++++ 3 files changed, 18 insertions(+) diff --git a/index.js b/index.js index 7bc75ca5..1c6f8798 100644 --- a/index.js +++ b/index.js @@ -1,6 +1,7 @@ // import { name as appName } from './app.json'; import 'text-encoding-polyfill'; import './shim'; +import 'react-native-url-polyfill/auto'; import { AppRegistry, Text, TextInput } from 'react-native'; diff --git a/package.json b/package.json index aab32146..4517b9a1 100644 --- a/package.json +++ b/package.json @@ -110,6 +110,7 @@ "react-native-tab-view": "^3.1.1", "react-native-tcp-socket": "^5.6.2", "react-native-udp": "^4.1.5", + "react-native-url-polyfill": "^1.3.0", "react-native-vector-icons": "^8.1.0", "react-native-video": "^5.2.0", "react-native-webview": "^11.21.2", diff --git a/yarn.lock b/yarn.lock index 7a181513..50b6df94 100644 --- a/yarn.lock +++ b/yarn.lock @@ -8918,6 +8918,13 @@ react-native-udp@^4.1.5: buffer "^5.6.0" events "^3.1.0" +react-native-url-polyfill@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/react-native-url-polyfill/-/react-native-url-polyfill-1.3.0.tgz#c1763de0f2a8c22cc3e959b654c8790622b6ef6a" + integrity sha512-w9JfSkvpqqlix9UjDvJjm1EjSt652zVQ6iwCIj1cVVkwXf4jQhQgTNXY6EVTwuAmUjg6BC6k9RHCBynoLFo3IQ== + dependencies: + whatwg-url-without-unicode "8.0.0-3" + react-native-vector-icons@^8.1.0: version "8.1.0" resolved "https://registry.yarnpkg.com/react-native-vector-icons/-/react-native-vector-icons-8.1.0.tgz#e8ee2b17bc4d9f636da1c6f67feee8e2a850c3d8" @@ -10738,6 +10745,15 @@ whatwg-mimetype@^2.3.0: resolved "https://registry.yarnpkg.com/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz#3d4b1e0312d2079879f826aff18dbeeca5960fbf" integrity sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g== +whatwg-url-without-unicode@8.0.0-3: + version "8.0.0-3" + resolved "https://registry.yarnpkg.com/whatwg-url-without-unicode/-/whatwg-url-without-unicode-8.0.0-3.tgz#ab6df4bf6caaa6c85a59f6e82c026151d4bb376b" + integrity sha512-HoKuzZrUlgpz35YO27XgD28uh/WJH4B0+3ttFqRo//lmq+9T/mIOJ6kqmINI9HpUpz1imRC/nR/lxKpJiv0uig== + dependencies: + buffer "^5.4.3" + punycode "^2.1.1" + webidl-conversions "^5.0.0" + whatwg-url@^5.0.0: version "5.0.0" resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-5.0.0.tgz#966454e8765462e37644d3626f6742ce8b70965d" From d1a9d978e8ac05496eca14725bf5c86df740670c Mon Sep 17 00:00:00 2001 From: nachosan Date: Wed, 28 Sep 2022 17:50:15 -0300 Subject: [PATCH 2/3] Changed version --- android/app/build.gradle | 4 ++-- ios/Plug.xcodeproj/project.pbxproj | 4 ++-- package.json | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/android/app/build.gradle b/android/app/build.gradle index 5ad0e13f..2aaa1a06 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -143,8 +143,8 @@ android { applicationId "co.psychedelic.plug" minSdkVersion rootProject.ext.minSdkVersion targetSdkVersion rootProject.ext.targetSdkVersion - versionCode 16 - versionName "0.2.0" + versionCode 17 + versionName "0.2.1" resValue "string", "build_config_package", "co.psychedelic.plug" } splits { diff --git a/ios/Plug.xcodeproj/project.pbxproj b/ios/Plug.xcodeproj/project.pbxproj index d0a76b01..d5747c79 100644 --- a/ios/Plug.xcodeproj/project.pbxproj +++ b/ios/Plug.xcodeproj/project.pbxproj @@ -572,7 +572,7 @@ "$(inherited)", "$(PROJECT_DIR)/rust/.cargo/mobile_app/target/universal/release", ); - MARKETING_VERSION = 0.2.0; + MARKETING_VERSION = 0.2.1; OTHER_LDFLAGS = ( "$(inherited)", "-ObjC", @@ -614,7 +614,7 @@ "$(inherited)", "$(PROJECT_DIR)/rust/.cargo/mobile_app/target/universal/release", ); - MARKETING_VERSION = 0.2.0; + MARKETING_VERSION = 0.2.1; OTHER_LDFLAGS = ( "$(inherited)", "-ObjC", diff --git a/package.json b/package.json index 4517b9a1..b1ee49fc 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "plug-mobile", - "version": "0.2.0", + "version": "0.2.1", "private": true, "scripts": { "rename-build": "chmod +x ./rename-ic-agent.sh && ./rename-ic-agent.sh", From a9d18b50ec01f871f2926b2f913abe64dec197b9 Mon Sep 17 00:00:00 2001 From: nachosan Date: Thu, 29 Sep 2022 11:03:38 -0300 Subject: [PATCH 3/3] Changed version number --- android/app/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/app/build.gradle b/android/app/build.gradle index 2aaa1a06..8679b13e 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -143,7 +143,7 @@ android { applicationId "co.psychedelic.plug" minSdkVersion rootProject.ext.minSdkVersion targetSdkVersion rootProject.ext.targetSdkVersion - versionCode 17 + versionCode 18 versionName "0.2.1" resValue "string", "build_config_package", "co.psychedelic.plug" }