Releases: trustedshops-public/etrusted-android-trustbadge-library
1.0.1
Release 0.1.757-SNAPSHOT
🥳 This releases enables basic functionality of Trustcard Buyer Protection
feature.
The Example project is updated to preview Trustcard in the profile screen.
Changes:
- enabled the Trustcard
- update the example app to preview the new Trustcard in ProfileScreen
Using the Trucard is similar to using the Trustbadge with BuyerProtection context, to show the Trustcard, it is required to also pass a OrderDetails
object to the BuyerProtection
context when showing the Trustbadge.
Example of showing the Trustcard:
val orderDetails = OrderDetails(
number = "123456789",
amount = "129.00",
currency = CurrencyCode.EUR,
paymentType = "PayPal",
estimatedDeliveryDate = "2022-11-30",
buyerEmail = "[email protected]"
),
val badgeContext = TrustbadgeContext.BuyerProtection(
orderDetails = orderDetails
),
...
Trustbadge(
badgeContext = badgeContext
...
)
Release 0.1.573-SNAPSHOT
🥳 This releases enables basic functionality of ProductGrade
feature.
🎁 Also, starting from this version, the library does not require authentication and the trustbadge-config.json
anymore.
The Example project is updated to show how to hide the Trustbadge in react to user scroll.
Changes:
- enabled
ProductGrade
feature, see README or the example app for information about using it. - update the example app to show the
ProductGrade
widget - update
README
to show how to use theProductGrade
context in the host app
Release 0.1.383-SNAPSHOT
These changes enable basic functionality of BuyerProtection
feature.
Changes:
- enabled
BuyerProtection
feature - update the example app to show the
BuyerProtection
widget - update
README
to show how to use theBuyerProtection
context in the host app
Release 0.0.1-SNAPSHOT
These changes enable basic functionality of the Trustbadge library.
Changes:
- Add TrustbadgeData data class
- Register API Call to load TrustbadgeData
- Add image and text resources
- Update the example project with basic navigation and screenshots
- Applied trustbadge gradle plugin to the library to automatically produce the properties file
- Applied gradle
signing
andmaven-publish
plugins and configured publish to maven - Setup CircleCI to run android tests, report coverage to codecov, and publish to maven
- Prepare screenshot testing using gradle managed devices
- add docs
README.md
andCONTRIBUTING.md