File tree Expand file tree Collapse file tree
ios/Runner.xcodeproj/xcshareddata/xcschemes Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ concurrency:
1515env :
1616 ruby : ' 3.3.1'
1717 flutter : ' 3.x'
18- ios-simulator : iPhone 16
18+ ios-simulator : iPhone 17
1919 java : 17
2020
2121jobs :
Original file line number Diff line number Diff line change @@ -12,6 +12,10 @@ build/
1212GeneratedPluginRegistrant.h
1313GeneratedPluginRegistrant.m
1414
15+ # Swift Package Manager build cache
16+ .build /
17+ .swiftpm /
18+
1519.generated /
1620
1721* .pbxuser
Original file line number Diff line number Diff line change 2626 buildConfiguration = " Debug"
2727 selectedDebuggerIdentifier = " "
2828 selectedLauncherIdentifier = " Xcode.IDEFoundation.Launcher.PosixSpawn"
29+ customLLDBInitFile = " $(SRCROOT)/Flutter/ephemeral/flutter_lldbinit"
2930 shouldUseLaunchSchemeArgsEnv = " NO"
3031 codeCoverageEnabled = " YES" >
3132 <MacroExpansion >
7677 buildConfiguration = " Debug"
7778 selectedDebuggerIdentifier = " Xcode.DebuggerFoundation.Debugger.LLDB"
7879 selectedLauncherIdentifier = " Xcode.DebuggerFoundation.Launcher.LLDB"
80+ customLLDBInitFile = " $(SRCROOT)/Flutter/ephemeral/flutter_lldbinit"
7981 launchStyle = " 0"
8082 useCustomWorkingDirectory = " NO"
8183 ignoresPersistentStateOnLaunch = " NO"
8284 debugDocumentVersioning = " YES"
8385 debugServiceExtension = " internal"
86+ enableGPUValidationMode = " 1"
8487 allowLocationSimulation = " YES" >
8588 <BuildableProductRunnable
8689 runnableDebuggingMode = " 0" >
Original file line number Diff line number Diff line change @@ -77,7 +77,7 @@ class _ExampleAppState extends State<ExampleApp> {
7777 _isLoggedIn = true ;
7878 });
7979
80- output = result.idToken.replaceAll (RegExp (r '.' ), '*' );
80+ output = result.idToken.replaceAll (RegExp ('.' ), '*' );
8181 }
8282 } catch (e) {
8383 output = e.toString ();
@@ -231,8 +231,9 @@ class _ExampleAppState extends State<ExampleApp> {
231231 'Session Transfer Token: ${token .substring (0 , 20 )}...\n '
232232 'Token Type: ${ssoCredentials .tokenType }\n '
233233 'Expires In: ${ssoCredentials .expiresIn }s\n '
234- 'ID Token: ${ssoCredentials .idToken != null ? '****' : 'N/A' }\n '
235- 'Refresh Token: ${ssoCredentials .refreshToken != null ? '****' : 'N/A' }' ;
234+ 'ID Token: ****\n '
235+ 'Refresh Token: '
236+ '${ssoCredentials .refreshToken != null ? '****' : 'N/A' }' ;
236237 } on CredentialsManagerException catch (e) {
237238 output = 'SSO Error: ${e .code }\n ${e .message }' ;
238239 } catch (e) {
Original file line number Diff line number Diff line change @@ -12,6 +12,10 @@ build/
1212GeneratedPluginRegistrant.h
1313GeneratedPluginRegistrant.m
1414
15+ # Swift Package Manager build cache
16+ .build /
17+ .swiftpm /
18+
1519.generated /
1620
1721* .pbxuser
Original file line number Diff line number Diff line change @@ -12,6 +12,10 @@ build/
1212GeneratedPluginRegistrant.h
1313GeneratedPluginRegistrant.m
1414
15+ # Swift Package Manager build cache
16+ .build /
17+ .swiftpm /
18+
1519.generated /
1620
1721* .pbxuser
You can’t perform that action at this time.
0 commit comments