Skip to content

Releases: trustedshops-public/etrusted-android-trustbadge-library

1.0.1

12 Jan 17:12
225a1d7
Compare
Choose a tag to compare

First release also pushed to Maven Central.
No new features or fixes compared to the last SNAPSHOT release.

Release 0.1.757-SNAPSHOT

09 Oct 07:30
ac00801
Compare
Choose a tag to compare

🥳 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

24 May 11:36
806f171
Compare
Choose a tag to compare

🥳 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 the ProductGrade context in the host app

Release 0.1.383-SNAPSHOT

05 Apr 07:35
6fc7e75
Compare
Choose a tag to compare

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 the BuyerProtection context in the host app

Release 0.0.1-SNAPSHOT

27 Feb 17:08
8dd9f86
Compare
Choose a tag to compare

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 and maven-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 and CONTRIBUTING.md