From 18c0c3834bf4122898578735b7eb626dd0058807 Mon Sep 17 00:00:00 2001 From: sadiabbasi Date: Thu, 12 Oct 2023 14:07:43 +0300 Subject: [PATCH 1/7] add : --- prepare.app.config.ts | 2 +- src/containers/CreatePassphraseContainer.tsx | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/prepare.app.config.ts b/prepare.app.config.ts index 8755918cd..6aa1f996e 100644 --- a/prepare.app.config.ts +++ b/prepare.app.config.ts @@ -10,7 +10,7 @@ const appInputs = { expoNodeEnv: process.env.EXPO_NODE_ENV, }; -console.log('appInputs', appInputs); +console.log('appInputs:', appInputs); let slug = settings.config.tonomyIdSlug.replace('://', ''); const scheme = slug; diff --git a/src/containers/CreatePassphraseContainer.tsx b/src/containers/CreatePassphraseContainer.tsx index 2e53e3b23..051570c75 100644 --- a/src/containers/CreatePassphraseContainer.tsx +++ b/src/containers/CreatePassphraseContainer.tsx @@ -16,7 +16,6 @@ import { ApplicationError, ApplicationErrors } from '../utils/errors'; export default function CreatePassphraseContainer({ navigation }: { navigation: Props['navigation'] }) { const { passphraseList, generatePassphraseList, getPassphrase } = usePassphraseStore(); const { user } = useUserStore(); - const hasEffectRun = useRef(false); useEffect(() => { From 9ec6fa22256b2ea1f74b20ebb5a645822304206a Mon Sep 17 00:00:00 2001 From: sadiabbasi Date: Thu, 12 Oct 2023 14:08:36 +0300 Subject: [PATCH 2/7] revert change : --- prepare.app.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prepare.app.config.ts b/prepare.app.config.ts index 6aa1f996e..8755918cd 100644 --- a/prepare.app.config.ts +++ b/prepare.app.config.ts @@ -10,7 +10,7 @@ const appInputs = { expoNodeEnv: process.env.EXPO_NODE_ENV, }; -console.log('appInputs:', appInputs); +console.log('appInputs', appInputs); let slug = settings.config.tonomyIdSlug.replace('://', ''); const scheme = slug; From 74ebc558dd3644a810cbdaa0710b36a9c9790532 Mon Sep 17 00:00:00 2001 From: sadiabbasi Date: Thu, 12 Oct 2023 15:10:14 +0300 Subject: [PATCH 3/7] added version to eas --- eas.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/eas.json b/eas.json index 165606d89..79ee76934 100644 --- a/eas.json +++ b/eas.json @@ -1,6 +1,7 @@ { "cli": { - "appVersionSource": "remote" + "appVersionSource": "remote", + "version": "~49.0.7" }, "build": { "development": { From 1068450b7520338d4e68c314a9fb659f1d0396be Mon Sep 17 00:00:00 2001 From: sadiabbasi Date: Thu, 12 Oct 2023 16:08:15 +0300 Subject: [PATCH 4/7] added node version in eas.json --- eas.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eas.json b/eas.json index 79ee76934..a6310b14b 100644 --- a/eas.json +++ b/eas.json @@ -1,7 +1,6 @@ { "cli": { - "appVersionSource": "remote", - "version": "~49.0.7" + "appVersionSource": "remote" }, "build": { "development": { @@ -32,6 +31,7 @@ }, "submit": { "production": { + "node": "18.17.1", "android": { "serviceAccountKeyPath": "./google-service-key.json", "track": "production" From b541206e0be0a63a4e02fee62691774dd123d3b1 Mon Sep 17 00:00:00 2001 From: sadiabbasi Date: Thu, 12 Oct 2023 16:10:43 +0300 Subject: [PATCH 5/7] added production to build --- eas.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/eas.json b/eas.json index a6310b14b..a6b6dd121 100644 --- a/eas.json +++ b/eas.json @@ -3,6 +3,9 @@ "appVersionSource": "remote" }, "build": { + "production": { + "node": "16.18.0" + }, "development": { "env": { "EXPO_NODE_ENV": "development" @@ -31,7 +34,6 @@ }, "submit": { "production": { - "node": "18.17.1", "android": { "serviceAccountKeyPath": "./google-service-key.json", "track": "production" From 90f880e5345c5b08a31d1e2d140720c1159ebb0f Mon Sep 17 00:00:00 2001 From: sadiabbasi Date: Thu, 12 Oct 2023 16:11:16 +0300 Subject: [PATCH 6/7] updated version --- eas.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eas.json b/eas.json index a6b6dd121..e76a4a1a1 100644 --- a/eas.json +++ b/eas.json @@ -4,7 +4,7 @@ }, "build": { "production": { - "node": "16.18.0" + "node": "18.17.1" }, "development": { "env": { From 4c5e9447e51b9db168936a058b308bac977c0956 Mon Sep 17 00:00:00 2001 From: sadiabbasi Date: Thu, 12 Oct 2023 16:38:36 +0300 Subject: [PATCH 7/7] update node version --- eas.json | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/eas.json b/eas.json index e76a4a1a1..297a33f80 100644 --- a/eas.json +++ b/eas.json @@ -3,9 +3,6 @@ "appVersionSource": "remote" }, "build": { - "production": { - "node": "18.17.1" - }, "development": { "env": { "EXPO_NODE_ENV": "development" @@ -14,6 +11,7 @@ "distribution": "internal" }, "demo": { + "node": "18.17.1", "env": { "EXPO_NODE_ENV": "demo" },