Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
626a215
ALFMOB-202: Fix iOS 26 liquid glass effect bug
paulcristian-mindera Dec 18, 2025
93d9ae3
task: improved github actions
amccall-mindera Dec 18, 2025
be365ac
task: temp run jobs manually
amccall-mindera Dec 18, 2025
11ed73a
task: SPM caching
amccall-mindera Dec 18, 2025
251dfd6
task: .gitignore cleanup
amccall-mindera Dec 18, 2025
8597d51
task: updated tooling
amccall-mindera Dec 18, 2025
47100bc
task: removed unnecessary properties
amccall-mindera Dec 18, 2025
5a6cf82
task: updated .gitignore
amccall-mindera Dec 18, 2025
0c620ad
task: test to remove specified xcode
amccall-mindera Dec 18, 2025
3931d01
task: removed ci testing parameters
amccall-mindera Dec 18, 2025
748d608
Update .github/workflows/alfie.yml
amccall-mindera Dec 18, 2025
72d0dce
Update .github/workflows/alfie.yml
amccall-mindera Dec 18, 2025
41c5224
Update .github/workflows/alfie.yml
amccall-mindera Dec 18, 2025
8620f6f
Merge remote-tracking branch 'upstream/task/ALFMOB-201_improve-github…
paulcristian-mindera Dec 19, 2025
7b4dcec
Merge branch 'main' into bug/ALFMOB-202-fix-ios26-tabbar-issue
amccall-mindera Dec 19, 2025
e561411
Merge branch 'main' into bug/ALFMOB-202-fix-ios26-tabbar-issue
amccall-mindera Dec 23, 2025
768f674
Merge remote-tracking branch 'origin/main' into bug/ALFMOB-202-fix-io…
amccall-mindera Dec 23, 2025
20b12b1
Disable liquid glass at a project level
amccall-mindera Dec 23, 2025
acd4dfb
fix: re-enabled liquid glass and fixed tab bar
paulcristian-mindera Dec 24, 2025
9a191d0
fix: added back reference to GoogleService-Info for release
paulcristian-mindera Dec 24, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions Alfie/Alfie.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -544,8 +544,10 @@
GENERATE_INFOPLIST_FILE = YES;
INFOPLIST_FILE = Alfie/Info.plist;
INFOPLIST_KEY_CFBundleDisplayName = Alfie;
INFOPLIST_KEY_ITSAppUsesNonExemptEncryption = NO;
INFOPLIST_KEY_UIApplicationSceneManifest_Generation = YES;
INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES;
INFOPLIST_KEY_UILaunchStoryboardName = LaunchScreen.storyboard;
INFOPLIST_KEY_UIRequiresFullScreen = YES;
INFOPLIST_KEY_UISupportedInterfaceOrientations = UIInterfaceOrientationPortrait;
INFOPLIST_KEY_UIUserInterfaceStyle = Light;
Expand Down Expand Up @@ -581,8 +583,10 @@
GENERATE_INFOPLIST_FILE = YES;
INFOPLIST_FILE = Alfie/Info.plist;
INFOPLIST_KEY_CFBundleDisplayName = Alfie;
INFOPLIST_KEY_ITSAppUsesNonExemptEncryption = NO;
INFOPLIST_KEY_UIApplicationSceneManifest_Generation = YES;
INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES;
INFOPLIST_KEY_UILaunchStoryboardName = LaunchScreen.storyboard;
INFOPLIST_KEY_UIRequiresFullScreen = YES;
INFOPLIST_KEY_UISupportedInterfaceOrientations = UIInterfaceOrientationPortrait;
INFOPLIST_KEY_UIUserInterfaceStyle = Light;
Expand Down
4 changes: 0 additions & 4 deletions Alfie/Alfie/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,11 @@
</array>
</dict>
</array>
<key>ITSAppUsesNonExemptEncryption</key>
<false/>
<key>UIBackgroundModes</key>
<array>
<string>fetch</string>
<string>processing</string>
<string>remote-notification</string>
</array>
<key>UILaunchStoryboardName</key>
<string>LaunchScreen.storyboard</string>
</dict>
</plist>
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ public struct RootTabView<ViewModel: RootTabViewModelProtocol>: View {
.environment(\.tabBarSize, tabBarSize)
}
}
.toolbar(.hidden, for: .tabBar)
}
.accentColor(Colors.primary.black)
.padding(.bottom, Spacing.space150)
Expand Down