[PR #3776] [MERGED] fix: iOS TestFlight issues #5873

Closed
opened 2026-03-23 22:20:41 +00:00 by mirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/3776
Author: @LucasXu0
Created: 10/25/2023
Status: Merged
Merged: 10/25/2023
Merged by: @LucasXu0

Base: mainHead: ios_tf


📝 Commits (10+)

  • 6a44307 fix: transparent icons on iOS platform
  • a313270 fix: remove unused unit tests
  • 9ac43c2 chore: update flutter version
  • 7993089 feat: support building release packages for iOS and Android
  • 520d580 fix: integration test failed randomly
  • 705a18f chore: remove windows CI cache
  • 78dbade chore: update info.plist
  • cfc1619 feat: build iOS and Android in Release mode
  • 13414c0 chore: update editor version
  • 53e02ed chore: don't cache flutter when testing

📊 Changes

38 files changed (+143 additions, -284 deletions)

View changed files

📝 .github/workflows/flutter_ci.yaml (+2 -13)
📝 frontend/Makefile.toml (+7 -0)
frontend/appflowy_flutter/integration_test/empty_test.dart (+16 -0)
📝 frontend/appflowy_flutter/integration_test/runner.dart (+13 -8)
📝 frontend/appflowy_flutter/ios/Podfile.lock (+1 -1)
📝 frontend/appflowy_flutter/ios/Runner.xcodeproj/project.pbxproj (+20 -3)
frontend/appflowy_flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/100.png (+0 -0)
📝 frontend/appflowy_flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/1024.png (+0 -0)
📝 frontend/appflowy_flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/114.png (+0 -0)
📝 frontend/appflowy_flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/120.png (+0 -0)
frontend/appflowy_flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/128.png (+0 -0)
frontend/appflowy_flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/144.png (+0 -0)
frontend/appflowy_flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/152.png (+0 -0)
frontend/appflowy_flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/16.png (+0 -0)
frontend/appflowy_flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/167.png (+0 -0)
📝 frontend/appflowy_flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/180.png (+0 -0)
frontend/appflowy_flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/20.png (+0 -0)
frontend/appflowy_flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/256.png (+0 -0)
📝 frontend/appflowy_flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/29.png (+0 -0)
frontend/appflowy_flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/32.png (+0 -0)

...and 18 more files

📄 Description

Feature Preview

  • update iOS icons to match the Appstore requirements.

PR Checklist

  • My code adheres to AppFlowy's Conventions
  • I've listed at least one issue that this PR fixes in the description above.
  • I've added a test(s) to validate changes in this PR, or this PR only contains semantic changes.
  • All existing tests are passing.

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/AppFlowy-IO/AppFlowy/pull/3776 **Author:** [@LucasXu0](https://github.com/LucasXu0) **Created:** 10/25/2023 **Status:** ✅ Merged **Merged:** 10/25/2023 **Merged by:** [@LucasXu0](https://github.com/LucasXu0) **Base:** `main` ← **Head:** `ios_tf` --- ### 📝 Commits (10+) - [`6a44307`](https://github.com/AppFlowy-IO/AppFlowy/commit/6a4430772f6f62e43b3d180dafd6ad0808d59379) fix: transparent icons on iOS platform - [`a313270`](https://github.com/AppFlowy-IO/AppFlowy/commit/a3132709a00494e6fe3cdf0bcfa04558cdcfa673) fix: remove unused unit tests - [`9ac43c2`](https://github.com/AppFlowy-IO/AppFlowy/commit/9ac43c25e706ac95c5946b26d036037e6bc607c0) chore: update flutter version - [`7993089`](https://github.com/AppFlowy-IO/AppFlowy/commit/7993089165b05509b600021a8cd2c8a43e3628ed) feat: support building release packages for iOS and Android - [`520d580`](https://github.com/AppFlowy-IO/AppFlowy/commit/520d580892efe49fee49a9156351eddcd61ee33e) fix: integration test failed randomly - [`705a18f`](https://github.com/AppFlowy-IO/AppFlowy/commit/705a18f584a74c5c7e55f995d74cd07e6a4863f8) chore: remove windows CI cache - [`78dbade`](https://github.com/AppFlowy-IO/AppFlowy/commit/78dbade78eebeb806197f9da9b085c45ff363176) chore: update info.plist - [`cfc1619`](https://github.com/AppFlowy-IO/AppFlowy/commit/cfc161976881facfc5695886f8dcd5693c7f4095) feat: build iOS and Android in Release mode - [`13414c0`](https://github.com/AppFlowy-IO/AppFlowy/commit/13414c06addb919c0e00c93cf83a101783943ee4) chore: update editor version - [`53e02ed`](https://github.com/AppFlowy-IO/AppFlowy/commit/53e02edf2485f39543abe52ede5c2e7d24bf3132) chore: don't cache flutter when testing ### 📊 Changes **38 files changed** (+143 additions, -284 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/flutter_ci.yaml` (+2 -13) 📝 `frontend/Makefile.toml` (+7 -0) ➕ `frontend/appflowy_flutter/integration_test/empty_test.dart` (+16 -0) 📝 `frontend/appflowy_flutter/integration_test/runner.dart` (+13 -8) 📝 `frontend/appflowy_flutter/ios/Podfile.lock` (+1 -1) 📝 `frontend/appflowy_flutter/ios/Runner.xcodeproj/project.pbxproj` (+20 -3) ➖ `frontend/appflowy_flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/100.png` (+0 -0) 📝 `frontend/appflowy_flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/1024.png` (+0 -0) 📝 `frontend/appflowy_flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/114.png` (+0 -0) 📝 `frontend/appflowy_flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/120.png` (+0 -0) ➖ `frontend/appflowy_flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/128.png` (+0 -0) ➖ `frontend/appflowy_flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/144.png` (+0 -0) ➖ `frontend/appflowy_flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/152.png` (+0 -0) ➖ `frontend/appflowy_flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/16.png` (+0 -0) ➖ `frontend/appflowy_flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/167.png` (+0 -0) 📝 `frontend/appflowy_flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/180.png` (+0 -0) ➖ `frontend/appflowy_flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/20.png` (+0 -0) ➖ `frontend/appflowy_flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/256.png` (+0 -0) 📝 `frontend/appflowy_flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/29.png` (+0 -0) ➖ `frontend/appflowy_flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/32.png` (+0 -0) _...and 18 more files_ </details> ### 📄 Description <!--- Thank you for submitting a pull request to AppFlowy. The team will dedicate their best efforts to reviewing and approving your pull request. If you have any questions about the project or feedback for us, please join our [Discord](https://discord.gg/wdjWUXXhtw). --> <!--- If your pull request adds a new feature, please drag and drop a video into this section to showcase what you've done! If not, you may delete this section. --> ### Feature Preview - update iOS icons to match the Appstore requirements. <!--- List at least one issue here that this PR addresses. If it fixes the issue, please use the [fixes](https://docs.github.com/en/get-started/writing-on-github/working-with-advanced-formatting/using-keywords-in-issues-and-pull-requests) keyword to close the issue. For example: fixes https://github.com/AppFlowy-IO/AppFlowy/pull/2106 --> --- <!--- Before you mark this PR ready for review, run through this checklist! --> #### PR Checklist - [ ] My code adheres to [AppFlowy's Conventions](https://docs.appflowy.io/docs/documentation/software-contributions/conventions) - [ ] I've listed at least one issue that this PR fixes in the description above. - [ ] I've added a test(s) to validate changes in this PR, or this PR only contains semantic changes. - [ ] All existing tests are passing. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
mirror 2026-03-23 22:20:41 +00:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
AppFlowy-IO/AppFlowy#5873
No description provided.