Skip to content

Commit

Permalink
Merge 38c23ce into 2adf90e
Browse files Browse the repository at this point in the history
  • Loading branch information
najmsheikh committed Aug 12, 2020
2 parents 2adf90e + 38c23ce commit a4f5256
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
Expand Up @@ -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.
*
Expand Down
Expand Up @@ -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 {
Expand Down

0 comments on commit a4f5256

Please sign in to comment.