Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs links about 'obfuscatedAccountId & obfuscatedProfileId' fixes an… #639

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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
8 changes: 8 additions & 0 deletions docs/PurchaseArgs.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
## Purchase Args note


#### obfuscatedAccountId & obfuscatedProfileId
* iOS: Optional, only obfuscatedAccountId is used at this time. See [ApplicationUsername](https://developer.apple.com/documentation/storekit/skmutablepayment/1506088-applicationusername) on the payment.
* Android: Optional, see [Android documentation](https://developer.android.com/reference/com/android/billingclient/api/BillingFlowParams.Builder) for more info

<= Back to [Table of Contents](README.md)
4 changes: 2 additions & 2 deletions docs/PurchaseConsumable.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ Task<InAppBillingPurchase> PurchaseAsync(string productId, ItemType itemType, st
```

#### obfuscatedAccountId & obfuscatedProfileId
* iOS: Optional, only obfuscatedAccountId is used at this time. See [https://developer.apple.com/documentation/storekit/skmutablepayment/1506088-applicationusername](ApplicationUsername) on the payment.
* Android: Optional, see [https://developer.android.com/reference/com/android/billingclient/api/BillingFlowParams.Builder](Android documentation) for more info
See [Purchase Args note](PurchaseArgs.md)


### Consume Purchase
* Android & Windows: You must consume your purchase when your user uses it before buying another one.
Expand Down
4 changes: 1 addition & 3 deletions docs/PurchaseNonConsumable.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,7 @@ public async Task<bool> PurchaseItem(string productId)
```

#### obfuscatedAccountId & obfuscatedProfileId
* iOS: Optional, only obfuscatedAccountId is used at this time. See [https://developer.apple.com/documentation/storekit/skmutablepayment/1506088-applicationusername](ApplicationUsername) on the payment.
* Android: Optional, see [https://developer.android.com/reference/com/android/billingclient/api/BillingFlowParams.Builder](Android documentation) for more info

See [Purchase Args note](PurchaseArgs.md)


<= Back to [Table of Contents](README.md)
4 changes: 1 addition & 3 deletions docs/PurchaseSubscription.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,9 +84,7 @@ If you are on Android you must also now provide functionality to allow users to


#### obfuscatedAccountId & obfuscatedProfileId
* iOS: Optional, only obfuscatedAccountId is used at this time. See [https://developer.apple.com/documentation/storekit/skmutablepayment/1506088-applicationusername](ApplicationUsername) on the payment.
* Android: Optional, see [https://developer.android.com/reference/com/android/billingclient/api/BillingFlowParams.Builder](Android documentation) for more info

See [Purchase Args note](PurchaseArgs.md)


<= Back to [Table of Contents](README.md)
1 change: 1 addition & 0 deletions src/InAppBilling.sln
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Docs", "Docs", "{6A41C44D-4
..\docs\GetProductDetails.md = ..\docs\GetProductDetails.md
..\docs\GettingStarted.md = ..\docs\GettingStarted.md
..\docs\HandlingExceptions.md = ..\docs\HandlingExceptions.md
..\docs\PurchaseArgs.md = ..\docs\PurchaseArgs.md
..\docs\PurchaseConsumable.md = ..\docs\PurchaseConsumable.md
..\docs\PurchaseNonConsumable.md = ..\docs\PurchaseNonConsumable.md
..\docs\PurchaseSubscription.md = ..\docs\PurchaseSubscription.md
Expand Down