diff --git a/button-merchant/src/main/java/com/usebutton/merchant/ButtonMerchant.java b/button-merchant/src/main/java/com/usebutton/merchant/ButtonMerchant.java index 9d73aab..8a2e81d 100644 --- a/button-merchant/src/main/java/com/usebutton/merchant/ButtonMerchant.java +++ b/button-merchant/src/main/java/com/usebutton/merchant/ButtonMerchant.java @@ -169,15 +169,15 @@ public static void clearAllData(@NonNull Context context) { /** * Checks to see if the user visited a url prior to installing your app. * - * If a url is found, {@link PostInstallIntentListener#onPostInstallIntent(Intent)} will be + * If a url is found, {@link PostInstallIntentListener#onResult(Intent, Throwable)} will be * called on the listener you passed and you are responsible for navigating the user to the * relevant content in your app. If a url is not found or an error occurs, - * {@link PostInstallIntentListener#onNoPostInstallIntent(Throwable)} will be called on your + * {@link PostInstallIntentListener#onResult(Intent, Throwable)} will be called on your * listener and you can continue with your normal launch sequence. * * This method checks for a post-install url exactly *one time* after a user has installed your * app. Subsequent calls will result in a call to - * {@link PostInstallIntentListener#onNoPostInstallIntent(Throwable)} on your listener. You do + * {@link PostInstallIntentListener#onResult(Intent, Throwable)} on your listener. You do * not need to wait for the listener before continuing with your normal launch sequence but you * should be prepared to handle an intent if a post-install url is found. * diff --git a/button-merchant/src/main/java/com/usebutton/merchant/exception/ApplicationIdNotFoundException.java b/button-merchant/src/main/java/com/usebutton/merchant/exception/ApplicationIdNotFoundException.java index 18eb118..5d6bf01 100644 --- a/button-merchant/src/main/java/com/usebutton/merchant/exception/ApplicationIdNotFoundException.java +++ b/button-merchant/src/main/java/com/usebutton/merchant/exception/ApplicationIdNotFoundException.java @@ -25,10 +25,12 @@ package com.usebutton.merchant.exception; +import android.content.Intent; + import com.usebutton.merchant.PostInstallIntentListener; /** - * Exception is passed back in {@link PostInstallIntentListener#onNoPostInstallIntent(Throwable)} + * Exception is passed back in {@link PostInstallIntentListener#onResult(Intent, Throwable)} * when the application id is not set and it is required. */ public class ApplicationIdNotFoundException extends IllegalStateException {