From 8a1b6c2b52d2e5d0a6cf0f4c4cf17a88d06565b2 Mon Sep 17 00:00:00 2001 From: ahmedhanafy725 Date: Mon, 12 Feb 2024 11:34:35 +0200 Subject: [PATCH 01/13] Fix building apk for android --- app/android/app/build_local | 3 +-- app/android/app/build_production | 1 - app/android/app/build_staging | 3 +-- app/android/app/build_testing | 3 +-- 4 files changed, 3 insertions(+), 7 deletions(-) diff --git a/app/android/app/build_local b/app/android/app/build_local index 0032fae1..fa51847d 100644 --- a/app/android/app/build_local +++ b/app/android/app/build_local @@ -89,7 +89,6 @@ dependencies { implementation 'com.hbb20:ccp:2.4.0' implementation 'com.google.code.gson:gson:2.8.6' implementation "androidx.preference:preference-ktx:1.1.1" - implementation "com.github.shuftipro:ShuftiPro_SDK:0.6.0" implementation "androidx.lifecycle:lifecycle-viewmodel:$lifecycle_version" implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:$lifecycle_version" -} \ No newline at end of file +} diff --git a/app/android/app/build_production b/app/android/app/build_production index 2f2bb47b..fbcde236 100644 --- a/app/android/app/build_production +++ b/app/android/app/build_production @@ -88,7 +88,6 @@ dependencies { implementation 'com.hbb20:ccp:2.4.0' implementation 'com.google.code.gson:gson:2.8.6' implementation "androidx.preference:preference-ktx:1.1.1" - implementation "com.github.shuftipro:ShuftiPro_SDK:0.6.0" implementation "androidx.lifecycle:lifecycle-viewmodel:$lifecycle_version" implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:$lifecycle_version" } diff --git a/app/android/app/build_staging b/app/android/app/build_staging index 713f1f81..786d8861 100644 --- a/app/android/app/build_staging +++ b/app/android/app/build_staging @@ -88,7 +88,6 @@ dependencies { implementation 'com.hbb20:ccp:2.4.0' implementation 'com.google.code.gson:gson:2.8.6' implementation "androidx.preference:preference-ktx:1.1.1" - implementation "com.github.shuftipro:ShuftiPro_SDK:0.6.0" implementation "androidx.lifecycle:lifecycle-viewmodel:$lifecycle_version" implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:$lifecycle_version" -} \ No newline at end of file +} diff --git a/app/android/app/build_testing b/app/android/app/build_testing index 09a3f4b4..ff4c55c6 100644 --- a/app/android/app/build_testing +++ b/app/android/app/build_testing @@ -88,7 +88,6 @@ dependencies { implementation 'com.hbb20:ccp:2.4.0' implementation 'com.google.code.gson:gson:2.8.6' implementation "androidx.preference:preference-ktx:1.1.1" - implementation "com.github.shuftipro:ShuftiPro_SDK:0.6.0" implementation "androidx.lifecycle:lifecycle-viewmodel:$lifecycle_version" implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:$lifecycle_version" -} \ No newline at end of file +} From f288a93b007abd71abffa37af73afb79398f4a58 Mon Sep 17 00:00:00 2001 From: ahmedhanafy725 Date: Sun, 26 May 2024 08:15:25 +0300 Subject: [PATCH 02/13] Update the minimum version for the app --- backend/routes/misc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/routes/misc.py b/backend/routes/misc.py index 6d15e1c7..8e3d397b 100644 --- a/backend/routes/misc.py +++ b/backend/routes/misc.py @@ -10,7 +10,7 @@ @api_misc.route("/minimumversion", methods=["get"]) def minimum_version_handler(): response = Response( - response=json.dumps({"android": 70, "ios": 70}), mimetype="application/json" + response=json.dumps({"android": 177, "ios": 177}), mimetype="application/json" ) return response From 54f49b9801f37d97a74f7ac2c79d71170c7f0e55 Mon Sep 17 00:00:00 2001 From: ahmedhanafy725 Date: Sun, 26 May 2024 08:37:26 +0300 Subject: [PATCH 03/13] Update services' urls --- app/lib/app_config.dart | 40 +++++++++++++++---------------- app/lib/app_config_local.template | 4 ++-- 2 files changed, 22 insertions(+), 22 deletions(-) diff --git a/app/lib/app_config.dart b/app/lib/app_config.dart index c80a099a..5acbc5cf 100644 --- a/app/lib/app_config.dart +++ b/app/lib/app_config.dart @@ -76,7 +76,7 @@ class AppConfigProduction extends AppConfigImpl { } String openKycApiUrl() { - return "https://openkyc.live"; + return "https://openkyc.threefold.me"; } String threeBotApiUrl() { @@ -92,16 +92,16 @@ class AppConfigProduction extends AppConfigImpl { } String wizardUrl() { - return 'https://wizard.jimber.org/'; + return 'https://wizard.threefold.me/'; } String pKidUrl() { - return 'https://pkid.jimber.org/v1'; + return 'https://pkid.threefold.me/v1'; } Map flagSmithConfig() { return { - 'url': 'https://flagsmith.jimber.io/api/v1/', + 'url': 'https://flagsmith.threefold.me/api/v1/', 'apiKey': 'BuzktmbcnMJ77vznU7WhJB' }; } @@ -109,36 +109,36 @@ class AppConfigProduction extends AppConfigImpl { class AppConfigStaging extends AppConfigImpl { String baseUrl() { - return "login.staging.jimber.io"; + return "login.staging.threefold.me"; } String openKycApiUrl() { - return 'https://openkyc.staging.jimber.io'; + return 'https://kyc.staging.threefold.me'; } String threeBotApiUrl() { - return "https://login.staging.jimber.io/api"; + return "https://login.staging.threefold.me/api"; } String threeBotFrontEndUrl() { - return "https://login.staging.jimber.io/"; + return "https://login.staging.threefold.me/"; } String threeBotSocketUrl() { - return "wss://login.staging.jimber.io"; + return "wss://login.staging.threefold.me"; } String wizardUrl() { - return 'https://wizard.staging.jimber.io/'; + return 'https://wizard.staging.threefold.me/'; } String pKidUrl() { - return 'https://pkid.staging.jimber.io/v1'; + return 'https://pkid.staging.threefold.me/v1'; } Map flagSmithConfig() { return { - 'url': 'https://flagsmith.jimber.io/api/v1/', + 'url': 'https://flagsmith.threefold.me/api/v1/', 'apiKey': 'n6YyxDdrePqwAF49KCYx7S' }; } @@ -146,36 +146,36 @@ class AppConfigStaging extends AppConfigImpl { class AppConfigTesting extends AppConfigImpl { String baseUrl() { - return "login.testing.jimber.org"; + return "login.testing.threefold.me"; } String openKycApiUrl() { - return "https://openkyc.testing.jimber.org"; + return "https://openkyc.testing.threefold.me"; } String threeBotApiUrl() { - return "https://login.testing.jimber.org/api"; + return "https://login.testing.threefold.me/api"; } String threeBotFrontEndUrl() { - return "https://login.testing.jimber.org/"; + return "https://login.testing.threefold.me/"; } String threeBotSocketUrl() { - return "wss://login.testing.jimber.org"; + return "wss://login.testing.threefold.me"; } String wizardUrl() { - return 'https://wizard.staging.jimber.org/'; + return 'https://wizard.staging.threefold.me/'; } String pKidUrl() { - return 'https://pkid.staging.jimber.io/v1'; + return 'https://pkid.staging.threefold.me/v1'; } Map flagSmithConfig() { return { - 'url': 'https://flagsmith.jimber.io/api/v1/', + 'url': 'https://flagsmith.threefold.me/api/v1/', 'apiKey': 'VtTsMwJwiF69QWFWHGEMKM' }; } diff --git a/app/lib/app_config_local.template b/app/lib/app_config_local.template index 83fc4ab8..23242114 100644 --- a/app/lib/app_config_local.template +++ b/app/lib/app_config_local.template @@ -23,7 +23,7 @@ class AppConfigLocal extends AppConfigImpl { } String wizardUrl() { - return 'https://wizard.jimber.org/'; + return 'https://wizard.threefold.me/'; } String pKidUrl() { @@ -32,7 +32,7 @@ class AppConfigLocal extends AppConfigImpl { Map flagSmithConfig() { return { - 'url': 'https://flagsmith.jimber.io/api/v1/', + 'url': 'https://flagsmith.threefold.me/api/v1/', 'apiKey': 'm3L3gTcQYcFwCzSGxFJJWd' }; } From 3491abe34e8f5bdd22a5ddf8eb502d22c8af5237 Mon Sep 17 00:00:00 2001 From: ahmedhanafy725 Date: Sun, 26 May 2024 08:52:15 +0300 Subject: [PATCH 04/13] Update app version to 3.9.1+177 --- app/pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/pubspec.yaml b/app/pubspec.yaml index 0d16cdbf..615f2617 100644 --- a/app/pubspec.yaml +++ b/app/pubspec.yaml @@ -3,7 +3,7 @@ description: A decentralized login application publish_to: "none" -version: 3.9.0+176 +version: 3.9.1+177 environment: sdk: ">=2.12.0<3.0.0" From c0389ffadb400a5d2567d5ace30aa4b163c72038 Mon Sep 17 00:00:00 2001 From: ahmedhanafy725 Date: Sun, 26 May 2024 09:35:04 +0300 Subject: [PATCH 05/13] Change the news' url --- app/lib/apps/news/news_widget.dart | 34 ++++++++++++++++-------------- 1 file changed, 18 insertions(+), 16 deletions(-) diff --git a/app/lib/apps/news/news_widget.dart b/app/lib/apps/news/news_widget.dart index bbc01eea..14a18332 100644 --- a/app/lib/apps/news/news_widget.dart +++ b/app/lib/apps/news/news_widget.dart @@ -15,13 +15,12 @@ class NewsWidget extends StatefulWidget { _NewsState createState() => _NewsState(); } -class _NewsState extends State - with AutomaticKeepAliveClientMixin { +class _NewsState extends State with AutomaticKeepAliveClientMixin { late InAppWebViewController webView; late InAppWebView iaWebView; String url = ""; - String initialEndsWith= ""; + String initialEndsWith = ""; double progress = 0; var config = NewsConfig(); @@ -36,15 +35,17 @@ class _NewsState extends State } _NewsState() { - this.initialEndsWith = new DateTime.now().millisecondsSinceEpoch.toString(); + this.initialEndsWith = new DateTime.now().millisecondsSinceEpoch.toString(); iaWebView = InAppWebView( - initialUrlRequest: URLRequest(url:Uri.parse('https://news.threefoldconnect.jimber.org?cache_buster=' + initialEndsWith - )), - + initialUrlRequest: URLRequest( + url: Uri.parse( + 'https://news.threefold.me?cache_buster=' + initialEndsWith)), initialOptions: InAppWebViewGroupOptions( crossPlatform: InAppWebViewOptions(), android: AndroidInAppWebViewOptions( - supportMultipleWindows: true, thirdPartyCookiesEnabled: true, useHybridComposition: true), + supportMultipleWindows: true, + thirdPartyCookiesEnabled: true, + useHybridComposition: true), ios: IOSInAppWebViewOptions()), onWebViewCreated: (InAppWebViewController controller) { webView = controller; @@ -79,14 +80,15 @@ class _NewsState extends State @override Widget build(BuildContext context) { super.build(context); - return LayoutDrawer(titleText: 'News', content: - Column( - children: [ - Expanded( - child: Container(child: iaWebView), - ), - ], - )); + return LayoutDrawer( + titleText: 'News', + content: Column( + children: [ + Expanded( + child: Container(child: iaWebView), + ), + ], + )); } @override From efabfc2e9ceaff027b3b4c71775da14cdb65ba7a Mon Sep 17 00:00:00 2001 From: ahmedhanafy725 Date: Sun, 26 May 2024 09:46:17 +0300 Subject: [PATCH 06/13] Change some missing urls --- HowToLocalDev.md | 8 ++++---- app/lib/apps/news/news_config.dart | 6 +++--- app/lib/apps/wallet/wallet_config.dart | 6 +++--- frontend/public/config.testing.js | 4 ++-- 4 files changed, 12 insertions(+), 12 deletions(-) diff --git a/HowToLocalDev.md b/HowToLocalDev.md index df300f39..a6bef30f 100644 --- a/HowToLocalDev.md +++ b/HowToLocalDev.md @@ -10,7 +10,7 @@ export default { botFrontEnd: "http://192.168.1.2:8080", botBackend: "http://192.168.1.2:5000", - kycBackend: "https://openkyc.staging.jimber.org", + kycBackend: "https://openkyc.staging.threefold.me", redirect_url: `/callback`, appId: window.location.host, seedPhrase: @@ -32,7 +32,7 @@ export default { ```javascript export default { apiurl: "http://192.168.1.2:5000/", - openkycurl: "https://openkyc.staging.jimber.org/", + openkycurl: "https://openkyc.staging.threefold.me/", }; ``` @@ -83,7 +83,7 @@ class AppConfigLocal extends AppConfigImpl { } String openKycApiUrl() { - return "https://openkyc.staging.jimber.org"; + return "https://openkyc.staging.threefold.me"; } String threeBotApiUrl() { @@ -99,7 +99,7 @@ class AppConfigLocal extends AppConfigImpl { } String wizardUrl() { - return 'https://wizard.staging.jimber.org/'; + return 'https://wizard.staging.threefold.me/'; } } ``` diff --git a/app/lib/apps/news/news_config.dart b/app/lib/apps/news/news_config.dart index 22dd5c2a..a24d3b94 100644 --- a/app/lib/apps/news/news_config.dart +++ b/app/lib/apps/news/news_config.dart @@ -33,7 +33,7 @@ abstract class NewsConfigImpls { class NewsConfigStaging extends NewsConfigImpls { String appId() { - return 'news.threefoldconnect.jimber.org'; + return 'news.staging.threefold.me'; } String redirectUrl() { @@ -43,7 +43,7 @@ class NewsConfigStaging extends NewsConfigImpls { class NewsConfigProduction extends NewsConfigImpls { String appId() { - return 'news.threefoldconnect.jimber.org'; + return 'news.threefold.me'; } String redirectUrl() { @@ -53,7 +53,7 @@ class NewsConfigProduction extends NewsConfigImpls { class NewsConfigTesting extends NewsConfigImpls { String appId() { - return 'news.testing.jimber.org'; + return 'news.testing.threefold.me'; } String redirectUrl() { diff --git a/app/lib/apps/wallet/wallet_config.dart b/app/lib/apps/wallet/wallet_config.dart index d0f78559..b95e4acd 100644 --- a/app/lib/apps/wallet/wallet_config.dart +++ b/app/lib/apps/wallet/wallet_config.dart @@ -33,7 +33,7 @@ abstract class WalletConfigImpls { class WalletConfigStaging extends WalletConfigImpls { String appId() { - return 'wallet.staging.jimber.io'; + return 'wallet.staging.threefold.me'; } String redirectUrl() { @@ -53,7 +53,7 @@ class WalletConfigProduction extends WalletConfigImpls { class WalletConfigTesting extends WalletConfigImpls { String appId() { - return 'wallet.testing.jimber.org'; + return 'wallet.testing.threefold.me'; } String redirectUrl() { @@ -64,7 +64,7 @@ class WalletConfigTesting extends WalletConfigImpls { class WalletConfigLocal extends WalletConfigImpls { String appId() { return 'localhost:8080'; - // return 'wallet.staging.jimber.org'; + // return 'wallet.staging.threefold.me'; } String redirectUrl() { diff --git a/frontend/public/config.testing.js b/frontend/public/config.testing.js index 71ff5f44..a79cdaa6 100644 --- a/frontend/public/config.testing.js +++ b/frontend/public/config.testing.js @@ -1,5 +1,5 @@ export default ({ - apiurl: 'https://login.testing.jimber.org/', - openkycurl: 'https://openkyc.testing.jimber.org/', + apiurl: 'https://login.testing.threefold.me/', + openkycurl: 'https://openkyc.testing.threefold.me/', deeplink: 'threebot-testing://' }) From 5a855ba4ead02d2b70c64516807fdda64302d591 Mon Sep 17 00:00:00 2001 From: hossnys Date: Sun, 26 May 2024 17:17:00 +0300 Subject: [PATCH 07/13] remove echo config in workflow & update wizard url --- .github/workflows/production.yml | 1 - helm_files/valuesProduction.yaml | 5 ++++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/production.yml b/.github/workflows/production.yml index 4eeb7658..44fcebe6 100644 --- a/.github/workflows/production.yml +++ b/.github/workflows/production.yml @@ -49,7 +49,6 @@ jobs: - name: context run: | echo ${{ secrets.KUBE_CONFIG }} | base64 --decode > ${HOME}/.kube/config - cat ${HOME}/.kube/config - name: Upgrade production on cluster run: | echo production-${{ github.sha }} diff --git a/helm_files/valuesProduction.yaml b/helm_files/valuesProduction.yaml index 2c9a337a..9e5a4c61 100755 --- a/helm_files/valuesProduction.yaml +++ b/helm_files/valuesProduction.yaml @@ -25,4 +25,7 @@ ingress: path: / service: wizard-prod port: 82 - + - name: wizard.threefold.me + path: / + service: wizard-prod + port: 82 From b4aac75dd87559045a063eeb668ffef19f48ce50 Mon Sep 17 00:00:00 2001 From: hossnys Date: Sun, 26 May 2024 17:31:44 +0300 Subject: [PATCH 08/13] fix minimum versions of app --- backend/routes/misc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/routes/misc.py b/backend/routes/misc.py index 8e3d397b..6d15e1c7 100644 --- a/backend/routes/misc.py +++ b/backend/routes/misc.py @@ -10,7 +10,7 @@ @api_misc.route("/minimumversion", methods=["get"]) def minimum_version_handler(): response = Response( - response=json.dumps({"android": 177, "ios": 177}), mimetype="application/json" + response=json.dumps({"android": 70, "ios": 70}), mimetype="application/json" ) return response From 81fca68795e7d0ed2dfde7b68ddc0011d827f0c3 Mon Sep 17 00:00:00 2001 From: ahmedhanafy725 Date: Mon, 27 May 2024 19:39:56 +0300 Subject: [PATCH 09/13] Update the app version in ios to 3.9.1+177 --- app/ios/Runner.xcodeproj/project.pbxproj | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/app/ios/Runner.xcodeproj/project.pbxproj b/app/ios/Runner.xcodeproj/project.pbxproj index 01aea843..76d2a91d 100644 --- a/app/ios/Runner.xcodeproj/project.pbxproj +++ b/app/ios/Runner.xcodeproj/project.pbxproj @@ -375,7 +375,7 @@ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CLANG_ENABLE_MODULES = YES; CODE_SIGN_ENTITLEMENTS = Runner/Runner.entitlements; - CURRENT_PROJECT_VERSION = 176; + CURRENT_PROJECT_VERSION = 177; DEVELOPMENT_TEAM = 5KWG4UBB25; ENABLE_BITCODE = NO; FRAMEWORK_SEARCH_PATHS = ( @@ -392,7 +392,7 @@ "$(inherited)", "$(PROJECT_DIR)/Flutter", ); - MARKETING_VERSION = 3.9.0; + MARKETING_VERSION = 3.9.1; PRODUCT_BUNDLE_IDENTIFIER = org.jimber.threebot; PRODUCT_NAME = "$(TARGET_NAME)"; SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; @@ -520,7 +520,7 @@ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CLANG_ENABLE_MODULES = YES; CODE_SIGN_ENTITLEMENTS = Runner/Runner.entitlements; - CURRENT_PROJECT_VERSION = 176; + CURRENT_PROJECT_VERSION = 177; DEVELOPMENT_TEAM = 5KWG4UBB25; ENABLE_BITCODE = NO; FRAMEWORK_SEARCH_PATHS = ( @@ -537,7 +537,7 @@ "$(inherited)", "$(PROJECT_DIR)/Flutter", ); - MARKETING_VERSION = 3.9.0; + MARKETING_VERSION = 3.9.1; PRODUCT_BUNDLE_IDENTIFIER = org.jimber.threebot; PRODUCT_NAME = "$(TARGET_NAME)"; SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; @@ -555,7 +555,7 @@ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CLANG_ENABLE_MODULES = YES; CODE_SIGN_ENTITLEMENTS = Runner/Runner.entitlements; - CURRENT_PROJECT_VERSION = 176; + CURRENT_PROJECT_VERSION = 177; DEVELOPMENT_TEAM = 5KWG4UBB25; ENABLE_BITCODE = NO; FRAMEWORK_SEARCH_PATHS = ( @@ -572,7 +572,7 @@ "$(inherited)", "$(PROJECT_DIR)/Flutter", ); - MARKETING_VERSION = 3.9.0; + MARKETING_VERSION = 3.9.1; PRODUCT_BUNDLE_IDENTIFIER = org.jimber.threebot; PRODUCT_NAME = "$(TARGET_NAME)"; SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; From 47d8dd1346c0d05139f0da7eaef388f09477667f Mon Sep 17 00:00:00 2001 From: ahmedhanafy725 Date: Wed, 29 May 2024 11:00:10 +0300 Subject: [PATCH 10/13] Update app build number to 178 --- app/pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/pubspec.yaml b/app/pubspec.yaml index 615f2617..d00c6cf1 100644 --- a/app/pubspec.yaml +++ b/app/pubspec.yaml @@ -3,7 +3,7 @@ description: A decentralized login application publish_to: "none" -version: 3.9.1+177 +version: 3.9.1+178 environment: sdk: ">=2.12.0<3.0.0" From 4fec12d6eacf85b8ed7c22fd1e9b33deadb5ac62 Mon Sep 17 00:00:00 2001 From: ahmedhanafy725 Date: Wed, 29 May 2024 11:05:56 +0300 Subject: [PATCH 11/13] Update the app version in ios to 3.9.1+178 --- app/ios/Runner.xcodeproj/project.pbxproj | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/ios/Runner.xcodeproj/project.pbxproj b/app/ios/Runner.xcodeproj/project.pbxproj index 76d2a91d..1f141c85 100644 --- a/app/ios/Runner.xcodeproj/project.pbxproj +++ b/app/ios/Runner.xcodeproj/project.pbxproj @@ -375,7 +375,7 @@ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CLANG_ENABLE_MODULES = YES; CODE_SIGN_ENTITLEMENTS = Runner/Runner.entitlements; - CURRENT_PROJECT_VERSION = 177; + CURRENT_PROJECT_VERSION = 178; DEVELOPMENT_TEAM = 5KWG4UBB25; ENABLE_BITCODE = NO; FRAMEWORK_SEARCH_PATHS = ( @@ -520,7 +520,7 @@ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CLANG_ENABLE_MODULES = YES; CODE_SIGN_ENTITLEMENTS = Runner/Runner.entitlements; - CURRENT_PROJECT_VERSION = 177; + CURRENT_PROJECT_VERSION = 178; DEVELOPMENT_TEAM = 5KWG4UBB25; ENABLE_BITCODE = NO; FRAMEWORK_SEARCH_PATHS = ( @@ -555,7 +555,7 @@ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CLANG_ENABLE_MODULES = YES; CODE_SIGN_ENTITLEMENTS = Runner/Runner.entitlements; - CURRENT_PROJECT_VERSION = 177; + CURRENT_PROJECT_VERSION = 178; DEVELOPMENT_TEAM = 5KWG4UBB25; ENABLE_BITCODE = NO; FRAMEWORK_SEARCH_PATHS = ( From 58ed830217e94c150e18f44b31bd77c09bf2a1e4 Mon Sep 17 00:00:00 2001 From: ahmedhanafy725 Date: Thu, 30 May 2024 11:50:55 +0300 Subject: [PATCH 12/13] Update the last minimum build number to be 178 --- backend/routes/misc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/routes/misc.py b/backend/routes/misc.py index 6d15e1c7..63f21251 100644 --- a/backend/routes/misc.py +++ b/backend/routes/misc.py @@ -10,7 +10,7 @@ @api_misc.route("/minimumversion", methods=["get"]) def minimum_version_handler(): response = Response( - response=json.dumps({"android": 70, "ios": 70}), mimetype="application/json" + response=json.dumps({"android": 178, "ios": 178}), mimetype="application/json" ) return response From b1b986de8c5d0f46c1f697e1529da4fa0bfb59b9 Mon Sep 17 00:00:00 2001 From: ahmedhanafy725 Date: Thu, 30 May 2024 11:51:17 +0300 Subject: [PATCH 13/13] Update openkyc url in the login frontend package --- frontend/public/config.prod.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/public/config.prod.js b/frontend/public/config.prod.js index ae7cdaf0..14ddebeb 100644 --- a/frontend/public/config.prod.js +++ b/frontend/public/config.prod.js @@ -1,5 +1,5 @@ export default ({ apiurl: 'https://login.threefold.me/', - openkycurl: 'https://openkyc.live/', + openkycurl: 'https://openkyc.threefold.me/', deeplink: 'threebot://' })