Build an Intent to launch the invitation Activity to create and send invitations.
The Intent returned from
build() should be used to start the Activity using
startActivityForResult(android.content.Intent, int).
Example:
Intent intent = new AppInviteInvitation
.IntentBuilder("Send Invitations for XYZ app")
// Ensure valid length for any message used before calling otherwise this will throw
// an IllegalArgumentException if greater than MAX_MESSAGE_LENGTH.
.setMessage("Try out XYZ app now")
.setDeepLink(Uri.parse("//xyz.com/offer/free_trial_campaign"))
.setCallToActionText("Find data")
...
.build();
startActivityForResult(intent, REQUEST_INVITE);
AppInviteReferral
provides accessors to the broadcast parameters from within a custom broadcast receiver.
| @interface | AppInviteInvitation.IntentBuilder.PlatformMode | Mode for checking platform types. | |
| int | MAX_CALL_TO_ACTION_TEXT_LENGTH | Maximum length for the invitation button text
set in
setCallToActionText(CharSequence). |
| int | MAX_EMAIL_HTML_CONTENT | Maximum size for the email html content in bytes
for
setEmailHtmlContent(String). |
| int | MAX_MESSAGE_LENGTH | Maximum length for the invitation message set in
setMessage(CharSequence). |
| int | MIN_CALL_TO_ACTION_TEXT_LENGTH | Minimum length for the invitation button text
set in
setCallToActionText(CharSequence). |
| Intent |
build()
Builds the Intent to start the invitation Activity.
|
| AppInviteInvitation.IntentBuilder | |
| AppInviteInvitation.IntentBuilder |
setAdditionalReferralParameters(Map<String, String>
params)
Adds query parameters to the play store referral URL when the app needs
additional referral parameters for other application component referrals.
|
| AppInviteInvitation.IntentBuilder |
setAndroidMinimumVersionCode(int versionCode)
Sets the minimum version of the android app installed on the receiving device.
|
| AppInviteInvitation.IntentBuilder |
setCallToActionText(CharSequence
callToActionText)
Text shown on the email invitation for the user to accept the invitation.
|
| AppInviteInvitation.IntentBuilder | |
| AppInviteInvitation.IntentBuilder |
setDeepLink(Uri deepLink)
Sets the deep link that is made available to the app when opened from the
invitation.
|
| AppInviteInvitation.IntentBuilder |
setEmailHtmlContent(String htmlContent)
Sets the HTML-formatted (UTF-8 encoded, no JavaScript) content for invites sent
through email.
|
| AppInviteInvitation.IntentBuilder | |
| AppInviteInvitation.IntentBuilder | |
| AppInviteInvitation.IntentBuilder | |
| AppInviteInvitation.IntentBuilder |
setOtherPlatformsTargetApplication(int targetPlatform, String clientId)
Targets another version of your app to receive the invitation from Android.
|
Maximum length for the invitation button text set in
setCallToActionText(CharSequence).
Maximum size for the email html content in bytes for
setEmailHtmlContent(String).
Maximum length for the invitation message set in
setMessage(CharSequence).
Minimum length for the invitation button text set in
setCallToActionText(CharSequence).
App invite invitation builder.
| title | Sets the title for the invitation Activity. |
|---|
| NullPointerException | if title is null. |
|---|
Builds the Intent to start the invitation Activity.
startActivityForResult(Intent, int) to open the App Invite Activity.| IllegalArgumentException | if one of
setEmailSubject(String) or
setEmailHtmlContent(String) is set while the other is not set. Or if
setEmailHtmlContent(String) is set while
setCustomImage(Uri) or
setCallToActionText(CharSequence) is also set. |
|---|
Sets the name of the account to get a list of people for.
| account | Account of one of the accounts on the device user. The account type must be a
Google account
GOOGLE_ACCOUNT_TYPE. |
|---|
Adds query parameters to the play store referral URL when the app needs additional referral parameters for other application component referrals. These parameters are added to the referral URL sent from the play store and are available to be processed by other application components, for example Google Analytics. The parameters are set as name, value pairs that will be set as query parameter name and value on the referral URL.
Example:
Map<String, String> referralParams = new HashMap<String, String>();
referralParams.put("paramOne", "1");
referralParams.put("paramTwo", "2");
Intent intent = new AppInviteInvitation
.IntentBuilder("Send Invitations for XYZ app")
.setAdditionalReferralParameters(referralParams)
...
.build();
startActivityForResult(intent, REQUEST_INVITE);
| params | Referral parameters defined as name value pairs. |
|---|
Sets the minimum version of the android app installed on the receiving device. If this minimum version is not installed then the install flow will be triggered.
| versionCode | Minimum version of the android app. It will be compared with the android version code and if below this minimum the app will be considered not installed. Defaults to 0 which disables the version check. |
|---|
Text shown on the email invitation for the user to accept the invitation. Default
install text used if not set. This must not be set if
setEmailHtmlContent(String) is set or
build() will throw an Exception.
| callToActionText | Text to use on the invitation button. |
|---|
| IllegalArgumentException | if the length is greater than
MAX_CALL_TO_ACTION_TEXT_LENGTH or less than
MIN_CALL_TO_ACTION_TEXT_LENGTH characters. |
|---|
Sets an image for invitations. This must not be set if
setEmailHtmlContent(String) is set or
build() will throw an Exception.
| imageUri | the image Uri. The Uri is required to be in absolute format. The Uri can be either a content URI with scheme "android.resource", "content" or "file" or a network url with scheme "http" or "https". The supported image formats are "jpg", "jpeg" and "png". |
|---|
Sets the deep link that is made available to the app when opened from the invitation. This deep link is made available both to a newly installed application and an already installed application. The deep link can be sent to Android and other platforms so should be formatted to support deep links across platforms.
On android, a deep link filter for AppInvite should include an action, category, and data where the data is a uri that matches the deep link. The action must be VIEW and include both category DEFAULT and BROWSABLE as shown in the sample app.
Accessing the deep link in the application after being opened is described in
AppInviteReferral.
| deepLink | The app deep link. |
|---|
Sets the HTML-formatted (UTF-8 encoded, no JavaScript) content for invites sent
through email. If set, this will be sent instead of the default email. This must be set
along with
setEmailSubject(String) or
build() will throw an Exception.
setCustomImage(Uri) and
setCallToActionText(CharSequence) must not be set or
build() will throw an Exception.
htmlContent must be valid HTML for standard email processing. The pattern
%%APPINVITE_LINK_PLACEHOLDER%% should be embedded in your htmlContent and will be
replaced with the invitation URL. This url is a link that will launch the app if
already installed or take the user to the appropriate app store if not. In both cases
the deep link will be available if provided using
setDeepLink(Uri). Accessing the deep link in the application after being
opened is described in AppInviteReferral.
Intent intent = new AppInviteInvitation.IntentBuilder("Send Invitations for XYZ app")
...
.setEmailHtmlContent("<html><body>"
+ "<a href=\"%%APPINVITE_LINK_PLACEHOLDER%%\">XYZ Free Trial</a>"
+ "</body></html>")
.setEmailSubject("XYZ Offer")
...
.build();
Must be valid (MAX_EMAIL_HTML_CONTENT
bytes or less).
| htmlContent | The html-formatted content for the email. |
|---|
| IllegalArgumentException | if the content size is greater than
MAX_EMAIL_HTML_CONTENT bytes. |
|---|
Sets the subject for invites sent by email. This must be set along with
setEmailHtmlContent(String) or
build() will throw an Exception.
| subject | The subject for the email. |
|---|
Sets the Google Analytics Tracking id. The tracking id should be created for the calling application under Google Analytics. See more about how to get a tracking id . The tracking id is recommended so that invitations sent from the calling application are available in Google Analytics.
| trackingId | String of the form UA-xxxx-y |
|---|
Sets the invite message that is sent to all invitees. Must be valid (MAX_MESSAGE_LENGTH
bytes or less), including the length of translated and generated messages. The message
can be edited by the sender.
| message | The invite message. |
|---|
| IllegalArgumentException | if the length is greater than
MAX_MESSAGE_LENGTH. |
|---|
Targets another version of your app to receive the invitation from Android. This is needed only when there are multiple client IDs defined in your Google Developer Console project. Setting the target client ID for the invitation ensures that it goes to the correct app.
| targetPlatform | Platform for the clientId. Must be
PROJECT_PLATFORM_IOS or
PROJECT_PLATFORM_ANDROID. |
|---|---|
| clientId | Google generated client Id from the Developer console. |
| IllegalArgumentException | if is not
PROJECT_PLATFORM_IOS or
PROJECT_PLATFORM_ANDROID. |
|---|