From 0c3c0941e31e04d1185ed47a7aa92c0242794b01 Mon Sep 17 00:00:00 2001 From: boztopuz Date: Tue, 31 Oct 2023 08:38:44 +0300 Subject: [PATCH 01/15] Permission added for test --- Appcircle.xcodeproj/project.pbxproj | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Appcircle.xcodeproj/project.pbxproj b/Appcircle.xcodeproj/project.pbxproj index 7b69f9b..e173e82 100644 --- a/Appcircle.xcodeproj/project.pbxproj +++ b/Appcircle.xcodeproj/project.pbxproj @@ -437,6 +437,7 @@ DEVELOPMENT_TEAM = 8U2Z24R99J; ENABLE_PREVIEWS = YES; GENERATE_INFOPLIST_FILE = YES; + INFOPLIST_KEY_NSNetworkVolumesUsageDescription = "Network Permission"; INFOPLIST_KEY_UIApplicationSceneManifest_Generation = YES; INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES; INFOPLIST_KEY_UILaunchScreen_Generation = YES; @@ -466,6 +467,7 @@ DEVELOPMENT_TEAM = 8U2Z24R99J; ENABLE_PREVIEWS = YES; GENERATE_INFOPLIST_FILE = YES; + INFOPLIST_KEY_NSNetworkVolumesUsageDescription = "Network Permission"; INFOPLIST_KEY_UIApplicationSceneManifest_Generation = YES; INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES; INFOPLIST_KEY_UILaunchScreen_Generation = YES; From 517f58a4005ac61a53b7132fe8248f1b9abf824a Mon Sep 17 00:00:00 2001 From: boztopuz Date: Sat, 4 Nov 2023 17:35:55 +0300 Subject: [PATCH 02/15] New Permission Added --- Appcircle.xcodeproj/project.pbxproj | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Appcircle.xcodeproj/project.pbxproj b/Appcircle.xcodeproj/project.pbxproj index e173e82..3f37afa 100644 --- a/Appcircle.xcodeproj/project.pbxproj +++ b/Appcircle.xcodeproj/project.pbxproj @@ -437,6 +437,7 @@ DEVELOPMENT_TEAM = 8U2Z24R99J; ENABLE_PREVIEWS = YES; GENERATE_INFOPLIST_FILE = YES; + INFOPLIST_KEY_NSHealthShareUsageDescription = "Health Permission"; INFOPLIST_KEY_NSNetworkVolumesUsageDescription = "Network Permission"; INFOPLIST_KEY_UIApplicationSceneManifest_Generation = YES; INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES; @@ -467,6 +468,7 @@ DEVELOPMENT_TEAM = 8U2Z24R99J; ENABLE_PREVIEWS = YES; GENERATE_INFOPLIST_FILE = YES; + INFOPLIST_KEY_NSHealthShareUsageDescription = "Health Permission"; INFOPLIST_KEY_NSNetworkVolumesUsageDescription = "Network Permission"; INFOPLIST_KEY_UIApplicationSceneManifest_Generation = YES; INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES; From 5aa7e2e0e43e5a8984987eb0eda1611576888632 Mon Sep 17 00:00:00 2001 From: boztopuz Date: Fri, 29 Mar 2024 16:00:58 +0300 Subject: [PATCH 03/15] "Changed signing style as automatic" --- Appcircle.xcodeproj/project.pbxproj | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Appcircle.xcodeproj/project.pbxproj b/Appcircle.xcodeproj/project.pbxproj index dd98d5f..12460d2 100644 --- a/Appcircle.xcodeproj/project.pbxproj +++ b/Appcircle.xcodeproj/project.pbxproj @@ -532,10 +532,10 @@ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Manual; + CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 1; DEVELOPMENT_ASSET_PATHS = "\"Appcircle/Preview Content\""; - DEVELOPMENT_TEAM = ""; + DEVELOPMENT_TEAM = 8U2Z24R99J; ENABLE_PREVIEWS = YES; GENERATE_INFOPLIST_FILE = YES; INFOPLIST_KEY_NSHealthShareUsageDescription = "Health Permission"; @@ -567,10 +567,10 @@ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Manual; + CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 1; DEVELOPMENT_ASSET_PATHS = "\"Appcircle/Preview Content\""; - DEVELOPMENT_TEAM = ""; + DEVELOPMENT_TEAM = 8U2Z24R99J; ENABLE_PREVIEWS = YES; GENERATE_INFOPLIST_FILE = YES; INFOPLIST_KEY_NSHealthShareUsageDescription = "Health Permission"; @@ -603,7 +603,7 @@ CODE_SIGN_IDENTITY = "Apple Development"; CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 1; - DEVELOPMENT_TEAM = ""; + DEVELOPMENT_TEAM = 8U2Z24R99J; GENERATE_INFOPLIST_FILE = YES; IPHONEOS_DEPLOYMENT_TARGET = 15.0; MARKETING_VERSION = 1.0; @@ -625,7 +625,7 @@ CODE_SIGN_IDENTITY = "Apple Development"; CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 1; - DEVELOPMENT_TEAM = ""; + DEVELOPMENT_TEAM = 8U2Z24R99J; GENERATE_INFOPLIST_FILE = YES; IPHONEOS_DEPLOYMENT_TARGET = 15.0; MARKETING_VERSION = 1.0; @@ -645,7 +645,7 @@ buildSettings = { CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 1; - DEVELOPMENT_TEAM = ""; + DEVELOPMENT_TEAM = 8U2Z24R99J; GENERATE_INFOPLIST_FILE = YES; IPHONEOS_DEPLOYMENT_TARGET = 15.0; MARKETING_VERSION = 1.0; @@ -664,7 +664,7 @@ buildSettings = { CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 1; - DEVELOPMENT_TEAM = ""; + DEVELOPMENT_TEAM = 8U2Z24R99J; GENERATE_INFOPLIST_FILE = YES; IPHONEOS_DEPLOYMENT_TARGET = 15.0; MARKETING_VERSION = 1.0; From 1fd9f8725bf92f500e92ec6413c96bd1d794cce2 Mon Sep 17 00:00:00 2001 From: SarpBakis23 <167063711+SarpBakis23@users.noreply.github.com> Date: Wed, 9 Jul 2025 16:28:45 +0300 Subject: [PATCH 04/15] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index d6467f6..e5b3e91 100644 --- a/README.md +++ b/README.md @@ -10,3 +10,4 @@ You can contribute to this repository with fixes and feature updates that do no ## Reporting an Issue / Reaching Us If you encounter any issues related with the app in this repository, you can raise an issue here. If you have any other issues or questions about Appcircle, you can contact us via our [contact form on Appcircle.io](https://appcircle.io/support) or join our Slack community at [slack.appcircle.io](slack.appcircle.io) +test From d77a98e74b8dad69bd9f2e9790a154247cb44579 Mon Sep 17 00:00:00 2001 From: SarpBakis23 <167063711+SarpBakis23@users.noreply.github.com> Date: Wed, 9 Jul 2025 21:54:02 +0300 Subject: [PATCH 05/15] Update README.md --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index e5b3e91..d6467f6 100644 --- a/README.md +++ b/README.md @@ -10,4 +10,3 @@ You can contribute to this repository with fixes and feature updates that do no ## Reporting an Issue / Reaching Us If you encounter any issues related with the app in this repository, you can raise an issue here. If you have any other issues or questions about Appcircle, you can contact us via our [contact form on Appcircle.io](https://appcircle.io/support) or join our Slack community at [slack.appcircle.io](slack.appcircle.io) -test From 73c67d063ca4807688e04086673ac0c8be4b2701 Mon Sep 17 00:00:00 2001 From: SarpBakis23 <167063711+SarpBakis23@users.noreply.github.com> Date: Wed, 16 Jul 2025 11:14:08 +0300 Subject: [PATCH 06/15] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d6467f6..a267005 100644 --- a/README.md +++ b/README.md @@ -9,4 +9,4 @@ You can contribute to this repository with fixes and feature updates that do no ## Reporting an Issue / Reaching Us If you encounter any issues related with the app in this repository, you can raise an issue here. -If you have any other issues or questions about Appcircle, you can contact us via our [contact form on Appcircle.io](https://appcircle.io/support) or join our Slack community at [slack.appcircle.io](slack.appcircle.io) +If you have any other issues or questions about Appcircle, you can contact us via our [contact form on Appcircle.io](https://appcircle.io/support) or join our Slack community at [slack.appcircle.io](slack.appcircle.io)t From 62e3c271dab87ad6f95d8914de2bef2cadbca7f9 Mon Sep 17 00:00:00 2001 From: SarpBakis23 <167063711+SarpBakis23@users.noreply.github.com> Date: Wed, 16 Jul 2025 11:19:07 +0300 Subject: [PATCH 07/15] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a267005..a4fc51b 100644 --- a/README.md +++ b/README.md @@ -9,4 +9,4 @@ You can contribute to this repository with fixes and feature updates that do no ## Reporting an Issue / Reaching Us If you encounter any issues related with the app in this repository, you can raise an issue here. -If you have any other issues or questions about Appcircle, you can contact us via our [contact form on Appcircle.io](https://appcircle.io/support) or join our Slack community at [slack.appcircle.io](slack.appcircle.io)t +If you have any other issues or questions about Appcircle, you can contact us via our [contact form on Appcircle.io](https://appcircle.io/support) or join our Slack community at [slack.appcircle.io](slack.appcircle.io)test From 2a50ff900eeb66021f58ad529f7a3fd628fc19bd Mon Sep 17 00:00:00 2001 From: SarpBakis23 <167063711+SarpBakis23@users.noreply.github.com> Date: Wed, 16 Jul 2025 18:25:37 +0300 Subject: [PATCH 08/15] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a4fc51b..d6467f6 100644 --- a/README.md +++ b/README.md @@ -9,4 +9,4 @@ You can contribute to this repository with fixes and feature updates that do no ## Reporting an Issue / Reaching Us If you encounter any issues related with the app in this repository, you can raise an issue here. -If you have any other issues or questions about Appcircle, you can contact us via our [contact form on Appcircle.io](https://appcircle.io/support) or join our Slack community at [slack.appcircle.io](slack.appcircle.io)test +If you have any other issues or questions about Appcircle, you can contact us via our [contact form on Appcircle.io](https://appcircle.io/support) or join our Slack community at [slack.appcircle.io](slack.appcircle.io) From 4a765b578eb9c70bc96885b05846d7296572ae87 Mon Sep 17 00:00:00 2001 From: SarpBakis23 <167063711+SarpBakis23@users.noreply.github.com> Date: Thu, 14 Aug 2025 16:17:12 +0300 Subject: [PATCH 09/15] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index d6467f6..e5b3e91 100644 --- a/README.md +++ b/README.md @@ -10,3 +10,4 @@ You can contribute to this repository with fixes and feature updates that do no ## Reporting an Issue / Reaching Us If you encounter any issues related with the app in this repository, you can raise an issue here. If you have any other issues or questions about Appcircle, you can contact us via our [contact form on Appcircle.io](https://appcircle.io/support) or join our Slack community at [slack.appcircle.io](slack.appcircle.io) +test From 7db64426960b6b0678b378aa22714687aa85ed05 Mon Sep 17 00:00:00 2001 From: SarpBakis23 <167063711+SarpBakis23@users.noreply.github.com> Date: Thu, 14 Aug 2025 16:18:11 +0300 Subject: [PATCH 10/15] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index e5b3e91..26650eb 100644 --- a/README.md +++ b/README.md @@ -11,3 +11,4 @@ You can contribute to this repository with fixes and feature updates that do no If you encounter any issues related with the app in this repository, you can raise an issue here. If you have any other issues or questions about Appcircle, you can contact us via our [contact form on Appcircle.io](https://appcircle.io/support) or join our Slack community at [slack.appcircle.io](slack.appcircle.io) test +test From 4d4f838b0aca23be08ce846c29be8ecc9ae7af7c Mon Sep 17 00:00:00 2001 From: SarpBakis23 <167063711+SarpBakis23@users.noreply.github.com> Date: Thu, 25 Jun 2026 10:49:10 +0300 Subject: [PATCH 11/15] Update README.md --- README.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/README.md b/README.md index 26650eb..d6467f6 100644 --- a/README.md +++ b/README.md @@ -10,5 +10,3 @@ You can contribute to this repository with fixes and feature updates that do no ## Reporting an Issue / Reaching Us If you encounter any issues related with the app in this repository, you can raise an issue here. If you have any other issues or questions about Appcircle, you can contact us via our [contact form on Appcircle.io](https://appcircle.io/support) or join our Slack community at [slack.appcircle.io](slack.appcircle.io) -test -test From ee883d09b5b715765d537b811592bd92ea10b041 Mon Sep 17 00:00:00 2001 From: SarpBakis23 <167063711+SarpBakis23@users.noreply.github.com> Date: Fri, 26 Jun 2026 15:08:56 +0300 Subject: [PATCH 12/15] Update README.md From 75839d6b61d5ad7dcad5a9f095b3320b11ed3a52 Mon Sep 17 00:00:00 2001 From: SarpBakis23 <167063711+SarpBakis23@users.noreply.github.com> Date: Fri, 26 Jun 2026 15:10:22 +0300 Subject: [PATCH 13/15] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d6467f6..0b3bb48 100644 --- a/README.md +++ b/README.md @@ -9,4 +9,4 @@ You can contribute to this repository with fixes and feature updates that do no ## Reporting an Issue / Reaching Us If you encounter any issues related with the app in this repository, you can raise an issue here. -If you have any other issues or questions about Appcircle, you can contact us via our [contact form on Appcircle.io](https://appcircle.io/support) or join our Slack community at [slack.appcircle.io](slack.appcircle.io) +If you have any other issues or questions about Appcircle, you can contact us via our [contact form on Appcircle.io](https://appcircle.io/support) or join our Slack community at [slack.appcircle.io](slack.appcircle.io). From 484fddea0d229487f808f928bdd5c154a17f5934 Mon Sep 17 00:00:00 2001 From: SarpBakis23 <167063711+SarpBakis23@users.noreply.github.com> Date: Tue, 30 Jun 2026 11:59:04 +0300 Subject: [PATCH 14/15] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0b3bb48..116730d 100644 --- a/README.md +++ b/README.md @@ -9,4 +9,4 @@ You can contribute to this repository with fixes and feature updates that do no ## Reporting an Issue / Reaching Us If you encounter any issues related with the app in this repository, you can raise an issue here. -If you have any other issues or questions about Appcircle, you can contact us via our [contact form on Appcircle.io](https://appcircle.io/support) or join our Slack community at [slack.appcircle.io](slack.appcircle.io). +If you have any other issues or questions about Appcircle, you can contact us via our [contact form on Appcircle.io](https://appcircle.io/support) or join our Slack community at [slack.appcircle.io](slack.appcircle.io)... From ffb4ea8a3e28219bf6b956cd51515c8ec48f3736 Mon Sep 17 00:00:00 2001 From: SarpBakis23 <167063711+SarpBakis23@users.noreply.github.com> Date: Fri, 10 Jul 2026 15:55:14 +0300 Subject: [PATCH 15/15] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 116730d..d6467f6 100644 --- a/README.md +++ b/README.md @@ -9,4 +9,4 @@ You can contribute to this repository with fixes and feature updates that do no ## Reporting an Issue / Reaching Us If you encounter any issues related with the app in this repository, you can raise an issue here. -If you have any other issues or questions about Appcircle, you can contact us via our [contact form on Appcircle.io](https://appcircle.io/support) or join our Slack community at [slack.appcircle.io](slack.appcircle.io)... +If you have any other issues or questions about Appcircle, you can contact us via our [contact form on Appcircle.io](https://appcircle.io/support) or join our Slack community at [slack.appcircle.io](slack.appcircle.io)