Skip to content

Commit

Permalink
Merge pull request #70 from K232/patch-1
Browse files Browse the repository at this point in the history
Updated first example
  • Loading branch information
jamesmontemagno committed Aug 17, 2017
2 parents 5b081f8 + d5ba8b0 commit a39b5c9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/GettingStarted.md
Expand Up @@ -12,9 +12,9 @@ It is drop dead simple to gain access to the In-App Billing APIs in any project.
```csharp
public async Task<bool> MakePurchase()
{
var billing = CrossInAppBilling.Current;
try
{
var billing = CrossInAppBilling.Current;
var connected = await billing.ConnectAsync();
if(!connected)
return false;
Expand Down Expand Up @@ -148,4 +148,4 @@ protected override void OnActivityResult(int requestCode, Result resultCode, Int
```


<= Back to [Table of Contents](README.md)
<= Back to [Table of Contents](README.md)

0 comments on commit a39b5c9

Please sign in to comment.