Releases: usabilla/usabilla-u4a-android-sdk
Releases · usabilla/usabilla-u4a-android-sdk
v5.0.0
Added
- Added the possibility to apply a custom theme to a single passive feedback form
- Added a callback to the reset campaign method to notify when the action is finished
- Added the possibility to remove cached passive feedback forms
Updated
- Updated the way to interact with the SDK from static methods to class instantiation. See the ReadMe for more information
- Updated the method
loadFeedbackForm
to accept as parameters also a Bitmap for the screenshot and a theme - Updated the way to provide a screenshot to the SDK
- Updated Kotlin
stdlib
to usejdk7
instead ofjre7
Removed
- Removed the feature to give more feedback at the end of a passive feedback form
- Removed the methods
getAppName
,setAppName
,getAppId
,setCustomScreenshot
andgetAppVersion
from the public interface of our SDK
Fixed
- Fixed a crash happening on devices without Google PlayStore installed
- Fixed a crash happening when the screenshot file was not found
v4.1.1
v4.1.0
v4.0.3
v4.0.2
v4.0.1
v4.0.0
4.0.0
Added
- Added targeted active feedback functionalities. See the readme for more details.
- Added
updateFragmentManager(SupportFragmentManager)
to pass the FragmentManager needed for campaign functionalities. See the readme for more details. - Added
isDebugEnabled()
andsetDebugEnabled(boolean)
to enable the logging of information coming from the SDK. See the readme for more details. - Added
resetCampaignData(Context)
. See the readme for more details.
Updated
- Updated default smilies and stars.
- Renamed
UBForm
toUsabilla
. - Renamed
UBFormInterface
toUBFeedbackForm
. - Renamed
initClient()
method toinitialize(Context, String);
. Calling this method is now mandatory to start the SDK. - Changed
formLoadedSuccessfully(Form, boolean)
toformLoadSuccess(FormClient)
. - Changed
formFailedLoading(Form)
toformLoadFail()
. - Changed
loadFeedbackForm(String, Context, UBFormInterface);
toloadFeedbackForm(Context, String, UBFeedbackForm)
. - Changed
setCustomScreenshot(Bitmap)
tosetCustomScreenshot(Context, Bitmap)
. - Changed
textForMainButtonUpdated(String)
tomainButtonTextUpdated(String)
. - Refactored
UsabillaTheme
. See the readme for more details. - Merged
form.hideDefaultNavigationButton(boolean)
andform.hideCancelButton(boolean);
intosetDefaultNavigationButtonsVisibility(boolean)
andareNavigationButtonsVisible()
Removed
- Removed
showCancelButton
property. The cancel button will now be always displayed. - Removed the possibility to add specialised custom variables to passive forms. From now on, the global custom variables will be used instead.