Skip to content

Commit 72bdf5a

Browse files
committed
Merge branch 'release/Unity-3.14' into develop
2 parents c2d80ae + 1deeeaa commit 72bdf5a

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

versioned_docs/version-3.0/unity-making-purchases.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ In order to do this, you need to open the url of the following format:
123123
`https://apps.apple.com/redeem?ctx=offercodes&id={apple_app_id}&code={code}`
124124
:::
125125

126-
### Manage prepaid plans (Android)
126+
## Manage prepaid plans (Android)
127127

128128
If your app users can purchase [prepaid plans](https://developer.android.com/google/play/billing/subscriptions#prepaid-plans) (e.g., buy a non-renewable subscription for several months), you can enable [pending transactions](https://developer.android.com/google/play/billing/subscriptions#pending) for prepaid plans.
129129

versioned_docs/version-3.0/user-acquisition.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -259,16 +259,16 @@ Adapty.GetCurrentInstallationStatus((status, error) => {
259259
return;
260260
}
261261

262-
switch (status.Status) {
263-
case AdaptyInstallationStatusType.NotAvailable:
262+
switch (status) {
263+
case AdaptyInstallationStatusNotAvailable notAvailable:
264264
// Installation details are not available on this device
265265
break;
266-
case AdaptyInstallationStatusType.NotDetermined:
266+
case AdaptyInstallationStatusNotDetermined notDetermined:
267267
// Installation details have not been determined yet
268268
break;
269-
case AdaptyInstallationStatusType.Determined:
269+
case AdaptyInstallationStatusDetermined determined:
270270
// Use the installation details
271-
var details = status.Details;
271+
var details = determined.Details;
272272
break;
273273
}
274274
});

0 commit comments

Comments
 (0)