Skip to content

Commit

Permalink
Merge pull request #93 from erikseanparsons/patch-1
Browse files Browse the repository at this point in the history
Corrections to plan type requirements
  • Loading branch information
ayeung-sm authored Nov 17, 2020
2 parents e3e7490 + dcc5371 commit 929aefb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ sdkInstance.onStart(this, [SAMPLE_APP_NAME], [SAMPLE_REQUEST_CODE], [SAMPLE_SURV
```
This will check to see if the user should be prompted to take your survey (i.e. if (timeSinceLastSurveyPrompt > maxTimeIntervalBetweenSurveyPrompts)).

If you are a PREMIER user and want to include custom variables with each survey response, create a flat JSONObject with your custom variables and use:
If you are on Advantage Plan or higher and want to include custom variables with each survey response, create a flat JSONObject with your custom variables and use:
```java
sdkInstance.onStart(this, [SAMPLE_APP_NAME], [SAMPLE_REQUEST_CODE], [SAMPLE_SURVEY_HASH], [SAMPLE_CUSTOM_VARIABLES_DICTIONARY]);
```
Expand All @@ -89,7 +89,7 @@ To present a survey for the user to take, call:
sdkInstance.startSMFeedbackActivityForResult(this, [SAMPLE_REQUEST_CODE], [SAMPLE_SURVEY_HASH]);
```

If you are a PREMIER user and want to include custom variables with each survey response, create a flat JSONObject with your custom variables and use:
If you are on Advantage Plan or higher and want to include custom variables with each survey response, create a flat JSONObject with your custom variables and use:
```java
sdkInstance.startSMFeedbackActivityForResult(this, [SAMPLE_REQUEST_CODE], [SAMPLE_SURVEY_HASH], [SAMPLE_CUSTOM_VARIABLES_DICTIONARY]);
```
Expand Down Expand Up @@ -134,7 +134,7 @@ If you have a ADVANTAGE plan or higher, you can program your app to route your u

Yes, the mobile SDK can be incorporated into your app with any SurveyMonkey plan. However, developers must upgrade to ADVANTAGE or higher to take actions based on responses to survey questions (prompt users who report high satisfaction with your app to review it).

[Custom variables](http://help.surveymonkey.com/articles/en_US/kb/What-are-custom-variables-and-how-do-I-use-them) are available in PREMIER plans.
[Custom variables](http://help.surveymonkey.com/articles/en_US/kb/What-are-custom-variables-and-how-do-I-use-them) are available in Advantage Plan or higher.

*How can I style the survey? How will it look on a mobile device?*

Expand Down

0 comments on commit 929aefb

Please sign in to comment.