@@ -16731,7 +16731,7 @@ steps:
1673116731 const appStoreKeyId = 'App Store Keu ID';
1673216732 const appStoreSharedSecret = "App Store shared secret";
1673316733 const bundleId = 'your iOS bundle ID';
16734- const googlePlayProjectName = "Google Cloud project name ";
16734+ const googleCloudProjectId = "Google Cloud project ID ";
1673516735 const googlePlayPubsubBillingTopic = "play_billing"; // change if necessary
1673616736 ```
1673716737
@@ -16788,7 +16788,7 @@ steps:
1678816788 const appStoreKeyId = 'App Store Key ID';
1678916789 const appStoreSharedSecret = 'App Store shared secret';
1679016790 const bundleId = 'your iOS bundle ID';
16791- const googlePlayProjectName = 'Google Cloud project name ';
16791+ const googleCloudProjectId = 'Google Cloud project ID ';
1679216792 const googlePlayPubsubBillingTopic = 'play_billing';
1679316793 - name: Add dart-backend/lib/helpers.dart
1679416794 path: steps/dart-backend/lib/helpers.dart
@@ -18437,7 +18437,7 @@ steps:
1843718437 + print('Polling Google Play messages');
1843818438 + final request = pubsub.PullRequest(maxMessages: 1000);
1843918439 + final topicName =
18440- + 'projects/$googlePlayProjectName /subscriptions/$googlePlayPubsubBillingTopic-sub';
18440+ + 'projects/$googleCloudProjectId /subscriptions/$googlePlayPubsubBillingTopic-sub';
1844118441 + final pullResponse = await pubsubApi.projects.subscriptions.pull(
1844218442 + request,
1844318443 + topicName,
@@ -18503,7 +18503,7 @@ steps:
1850318503 + print('ACK Message');
1850418504 + final request = pubsub.AcknowledgeRequest(ackIds: [id]);
1850518505 + final subscriptionName =
18506- + 'projects/$googlePlayProjectName /subscriptions/$googlePlayPubsubBillingTopic-sub';
18506+ + 'projects/$googleCloudProjectId /subscriptions/$googlePlayPubsubBillingTopic-sub';
1850718507 + await pubsubApi.projects.subscriptions.acknowledge(
1850818508 + request,
1850918509 + subscriptionName,
0 commit comments