Skip to content

Commit ceefe64

Browse files
chore: CI simulator bump and project housekeeping (#866)
Co-authored-by: utkrishtS <utkrisht.sahu@okta.com>
1 parent 9afb33b commit ceefe64

6 files changed

Lines changed: 20 additions & 4 deletions

File tree

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ concurrency:
1515
env:
1616
ruby: '3.3.1'
1717
flutter: '3.x'
18-
ios-simulator: iPhone 16
18+
ios-simulator: iPhone 17
1919
java: 17
2020

2121
jobs:

auth0_flutter/darwin/.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@ build/
1212
GeneratedPluginRegistrant.h
1313
GeneratedPluginRegistrant.m
1414

15+
# Swift Package Manager build cache
16+
.build/
17+
.swiftpm/
18+
1519
.generated/
1620

1721
*.pbxuser

auth0_flutter/example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
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>
@@ -76,11 +77,13 @@
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">

auth0_flutter/example/lib/example_app.dart

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff 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) {

auth0_flutter/ios/.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@ build/
1212
GeneratedPluginRegistrant.h
1313
GeneratedPluginRegistrant.m
1414

15+
# Swift Package Manager build cache
16+
.build/
17+
.swiftpm/
18+
1519
.generated/
1620

1721
*.pbxuser

auth0_flutter/macos/.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@ build/
1212
GeneratedPluginRegistrant.h
1313
GeneratedPluginRegistrant.m
1414

15+
# Swift Package Manager build cache
16+
.build/
17+
.swiftpm/
18+
1519
.generated/
1620

1721
*.pbxuser

0 commit comments

Comments
 (0)