diff --git a/CHANGELOG.MD b/CHANGELOG.MD index 1d9f7a0..332a6ac 100644 --- a/CHANGELOG.MD +++ b/CHANGELOG.MD @@ -1,3 +1,8 @@ +## 3.0.4 +- Handled JSONException +- Removed unwanted resource files +- Made onStart() a public method + ## 3.0.3 - Fix for Mal-formed URL when using custom variables diff --git a/README.md b/README.md index 742107f..0c9d0f3 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ Want to improve your product and app store ratings? The SurveyMonkey Mobile Feed Gradle (mavenCentral): ```groovy -implementation 'com.surveymonkey:surveymonkey-android-sdk:3.0.3' +implementation 'com.surveymonkey:surveymonkey-android-sdk:3.0.4' ``` or @@ -23,7 +23,7 @@ Install via Maven (mavenCentral): com.surveymonkey surveymonkey-android-sdk - 3.0.3 + 3.0.4 ``` @@ -173,4 +173,4 @@ We recommend creating multiple [surveys](http://help.surveymonkey.com/articles/e *What is the minimum Android version supported? -As of version 3.0.2, the minsdk for this library is Api 21 (Android 5.x) +As of version 3.0.4, the minsdk for this library is Api 21 (Android 5.x) diff --git a/SimpleSurvey/app/build.gradle b/SimpleSurvey/app/build.gradle index 80039cb..0405114 100644 --- a/SimpleSurvey/app/build.gradle +++ b/SimpleSurvey/app/build.gradle @@ -25,6 +25,6 @@ dependencies { implementation 'androidx.appcompat:appcompat:1.6.1' testImplementation 'junit:junit:4.12' - implementation 'com.surveymonkey:surveymonkey-android-sdk:3.0.3' + implementation 'com.surveymonkey:surveymonkey-android-sdk:3.0.4' implementation 'com.google.android.material:material:1.8.0' }