Skip to content

Commit b2aef15

Browse files
[in_app_purchase_storekit] Updated comment (#9445)
### *Updated the comment refer to `StoreKit` instead of `Android`, in example/lib/main.dart* ### Before ```dart void main() { WidgetsFlutterBinding.ensureInitialized(); // When using the Android plugin directly it is mandatory to register // the plugin as default instance as part of initializing the app. InAppPurchaseStoreKitPlatform.registerPlatform(); ``` ### After ```dart void main() { WidgetsFlutterBinding.ensureInitialized(); // When using the StoreKit plugin directly it is mandatory to register // the plugin as default instance as part of initializing the app. InAppPurchaseStoreKitPlatform.registerPlatform(); ``` ### Issue Closes flutter/flutter#159623 ## Pre-Review Checklist [^1]: Regular contributors who have demonstrated familiarity with the repository guidelines only need to comment if the PR is not auto-exempted by repo tooling.
1 parent fe53da2 commit b2aef15

File tree

1 file changed

+1
-1
lines changed
  • packages/in_app_purchase/in_app_purchase_storekit/example/lib

1 file changed

+1
-1
lines changed

packages/in_app_purchase/in_app_purchase_storekit/example/lib/main.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import 'example_payment_queue_delegate.dart';
1414

1515
void main() {
1616
WidgetsFlutterBinding.ensureInitialized();
17-
// When using the Android plugin directly it is mandatory to register
17+
// When using the StoreKit plugin directly it is mandatory to register
1818
// the plugin as default instance as part of initializing the app.
1919
InAppPurchaseStoreKitPlatform.registerPlatform();
2020

0 commit comments

Comments
 (0)