From dcc537173d4ae54260bfbe9f762a8a04aed9afde Mon Sep 17 00:00:00 2001 From: Erik <37222649+erikseanparsons@users.noreply.github.com> Date: Tue, 17 Nov 2020 13:05:03 -0800 Subject: [PATCH] Corrections to plan type requirements Custom Variables are available on Advantage+ not Premier+. --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 78ffce8..1a68d33 100644 --- a/README.md +++ b/README.md @@ -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]); ``` @@ -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]); ``` @@ -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?*