Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitrygusev committed Mar 17, 2015
1 parent 21d3052 commit d0384bc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,28 +47,28 @@ public class SomeActivity extends Activity implements BillingProcessor.IBillingH
@Override
public void onBillingInitialized() {
/*
* Called then BillingProcessor was initialized and its ready to purchase
* Called when BillingProcessor was initialized and it's ready to purchase
*/
}

@Override
public void onProductPurchased(String productId, TransactionDetails details) {
/*
* Called then requested PRODUCT ID was successfully purchased
* Called when requested PRODUCT ID was successfully purchased
*/
}

@Override
public void onBillingError(int errorCode, Throwable error) {
/*
* Called then some error occurred. See Constants class for more details
* Called when some error occurred. See Constants class for more details
*/
}

@Override
public void onPurchaseHistoryRestored() {
/*
* Called then purchase history was restored and the list of all owned PRODUCT ID's
* Called when purchase history was restored and the list of all owned PRODUCT ID's
* was loaded from Google Play
*/
}
Expand Down

0 comments on commit d0384bc

Please sign in to comment.