Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed broken tag in Javadocs #58

Merged
merged 1 commit into from Aug 12, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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