Skip to content

Commit

Permalink
Minor bug fixes to 2.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Yury Pavlotsky committed Jun 23, 2015
1 parent 3183c1e commit a2dbc45
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -120,9 +120,14 @@ public void run() {
* @param purchaseListener A PlayStorePurchaseListener for monitoring purchase events.
* @param publicKey The app's public key string.
*/
public void setPlayStorePurchaseParams(PlayStorePurchaseListener purchaseListener,
String publicKey) {
interstitial.setPlayStorePurchaseParams(purchaseListener, publicKey);
public void setPlayStorePurchaseParams(final PlayStorePurchaseListener purchaseListener,
final String publicKey) {
activity.runOnUiThread(new Runnable() {
@Override
public void run() {
interstitial.setPlayStorePurchaseParams(purchaseListener, publicKey);
}
});
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
*/
public class PluginUtils {
/** Tag used for logging statements. */
public static final String LOGTAG = "GoogleMobileAdsUnityPlugin";
public static final String LOGTAG = "AdsUnity";

/**
* Gets a string error reason from an error code.
Expand Down
Binary file not shown.

0 comments on commit a2dbc45

Please sign in to comment.