You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/firebase_app_check/firebase_app_check/ios/firebase_app_check/Sources/firebase_app_check/FLTFirebaseAppCheckPlugin.m
Copy file name to clipboardExpand all lines: packages/firebase_app_check/firebase_app_check/lib/src/firebase_app_check.dart
+4-4
Original file line number
Diff line number
Diff line change
@@ -55,23 +55,23 @@ class FirebaseAppCheck extends FirebasePluginPlatform {
55
55
/// On iOS or macOS, the default provider is "device check". If you wish to set the provider to "app attest", "debug" or "app attest with fallback to device check"
56
56
/// ("app attest" is only available on iOS 14.0+, macOS 14.0+), you may set the `appleProvider` property using the `AppleProvider` enum
57
57
///
58
-
/// `androidDebugToken` and `iosDebugToken` allow you to set a debug token for the "debug" provider on Android and iOS respectively.
59
-
/// On iOS you have to rerun app after changing `iosDebugToken`.
58
+
/// `androidDebugToken` and `appleDebugToken` allow you to set a debug token for the "debug" provider on Android and Apple's systems, respectively.
59
+
/// On iOS, you must restart the app after changing the appleDebugToken.
60
60
///
61
61
/// For more information, see [the Firebase Documentation](https://firebase.google.com/docs/app-check)
Copy file name to clipboardExpand all lines: packages/firebase_app_check/firebase_app_check_platform_interface/lib/src/method_channel/method_channel_firebase_app_check.dart
+3-3
Original file line number
Diff line number
Diff line change
@@ -79,7 +79,7 @@ class MethodChannelFirebaseAppCheck extends FirebaseAppCheckPlatform {
Copy file name to clipboardExpand all lines: packages/firebase_app_check/firebase_app_check_platform_interface/lib/src/platform_interface/platform_interface_firebase_app_check.dart
+1-1
Original file line number
Diff line number
Diff line change
@@ -67,7 +67,7 @@ abstract class FirebaseAppCheckPlatform extends PlatformInterface {
67
67
AndroidProvider? androidProvider,
68
68
AppleProvider? appleProvider,
69
69
String? androidDebugToken,
70
-
String?iosDebugToken,
70
+
String?appleDebugToken,
71
71
}) {
72
72
throwUnimplementedError('activate() is not implemented');
0 commit comments