Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ concurrency:
env:
ruby: '3.3.1'
flutter: '3.x'
ios-simulator: iPhone 16
ios-simulator: iPhone 17
java: 17

jobs:
Expand Down
4 changes: 4 additions & 0 deletions auth0_flutter/darwin/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ build/
GeneratedPluginRegistrant.h
GeneratedPluginRegistrant.m

# Swift Package Manager build cache
.build/
.swiftpm/

.generated/

*.pbxuser
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
buildConfiguration = "Debug"
selectedDebuggerIdentifier = ""
selectedLauncherIdentifier = "Xcode.IDEFoundation.Launcher.PosixSpawn"
customLLDBInitFile = "$(SRCROOT)/Flutter/ephemeral/flutter_lldbinit"
shouldUseLaunchSchemeArgsEnv = "NO"
codeCoverageEnabled = "YES">
<MacroExpansion>
Expand Down Expand Up @@ -76,11 +77,13 @@
buildConfiguration = "Debug"
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
customLLDBInitFile = "$(SRCROOT)/Flutter/ephemeral/flutter_lldbinit"
launchStyle = "0"
useCustomWorkingDirectory = "NO"
ignoresPersistentStateOnLaunch = "NO"
debugDocumentVersioning = "YES"
debugServiceExtension = "internal"
enableGPUValidationMode = "1"
allowLocationSimulation = "YES">
<BuildableProductRunnable
runnableDebuggingMode = "0">
Expand Down
4 changes: 2 additions & 2 deletions auth0_flutter/example/lib/example_app.dart
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ class _ExampleAppState extends State<ExampleApp> {
_isLoggedIn = true;
});

output = result.idToken.replaceAll(RegExp(r'.'), '*');
output = result.idToken.replaceAll(RegExp('.'), '*');
}
} catch (e) {
output = e.toString();
Expand Down Expand Up @@ -231,7 +231,7 @@ class _ExampleAppState extends State<ExampleApp> {
'Session Transfer Token: ${token.substring(0, 20)}...\n'
'Token Type: ${ssoCredentials.tokenType}\n'
'Expires In: ${ssoCredentials.expiresIn}s\n'
'ID Token: ${ssoCredentials.idToken != null ? '****' : 'N/A'}\n'
'ID Token: ****\n'
'Refresh Token: '
'${ssoCredentials.refreshToken != null ? '****' : 'N/A'}';
} on CredentialsManagerException catch (e) {
Expand Down
4 changes: 4 additions & 0 deletions auth0_flutter/ios/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ build/
GeneratedPluginRegistrant.h
GeneratedPluginRegistrant.m

# Swift Package Manager build cache
.build/
.swiftpm/

.generated/

*.pbxuser
Expand Down
4 changes: 4 additions & 0 deletions auth0_flutter/macos/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ build/
GeneratedPluginRegistrant.h
GeneratedPluginRegistrant.m

# Swift Package Manager build cache
.build/
.swiftpm/

.generated/

*.pbxuser
Expand Down
Loading