Skip to content

Commit

Permalink
Merge pull request #12316 from woocommerce/bump_aztec_2_1_4
Browse files Browse the repository at this point in the history
Bump Aztec to `2.1.4`
  • Loading branch information
wzieba authored Aug 19, 2024
2 parents 0698fe9 + 2f5dca0 commit 34c51ae
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
5 changes: 4 additions & 1 deletion RELEASE-NOTES.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
*** PLEASE FOLLOW THIS FORMAT: [<priority indicator, more stars = higher priority>] <description> [<PR URL>]
*** Use [*****] to indicate smoke tests of all critical flows should be run on the final APK before release (e.g. major library or targetSdk updates).
*** For entries which are touching the Android Wear app's, start entry with `[WEAR]` too.
20.1
-----
- [*****] [Internal] Update Aztec from v1.3.45 to v2.1.4 [https://github.com/woocommerce/woocommerce-android/pull/12316]

20.0
-----
- [*] Fixed missing pictures in card reader tutorial on tablets [https://github.com/woocommerce/woocommerce-android/pull/12274]
Expand All @@ -10,7 +14,6 @@
- [*] [Internal] [Login] Switched back to using the `/token` endpoint for WordPress.com authentication, this fixes an issue where the SMS OTP is not triggered automatically after submitting the password [https://github.com/woocommerce/woocommerce-android/pull/12319]
- [*] [Internal] [WEAR] Introduces Sentry support to the Wear app


19.9
-----
- [*] Added subtotal and taxes fields to each refund item on the refund screen. [https://github.com/woocommerce/woocommerce-android/pull/12235]
Expand Down
5 changes: 3 additions & 2 deletions WooCommerce/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ repositories {
includeGroup "com.automattic"
includeGroup "com.automattic.tracks"
includeGroup "com.gravatar"
includeGroup "org.wordpress.aztec"
}
}
maven {
Expand Down Expand Up @@ -281,13 +282,13 @@ dependencies {
exclude group: "org.wordpress", module: "fluxc"
}

implementation("com.github.wordpress-mobile.WordPress-Aztec-Android:aztec:$aztecVersion") {
implementation("org.wordpress:aztec:$aztecVersion") {
exclude group: "com.android.volley"
exclude group: "com.android.support"
exclude group: "org.wordpress", module: "utils"
}

implementation("com.github.wordpress-mobile.WordPress-Aztec-Android:glide-loader:$aztecVersion") {
implementation("org.wordpress.aztec:glide-loader:$aztecVersion") {
exclude group: "com.android.volley"
exclude group: "com.android.support"
exclude group: "org.wordpress", module: "utils"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ open class WCBottomSheetDialogFragment : BottomSheetDialogFragment {
override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
dialog?.setOnShowListener {
val dialog = it as BottomSheetDialog
dialog.findViewById<View>(org.wordpress.aztec.R.id.design_bottom_sheet)?.let { sheet ->
dialog.findViewById<View>(com.google.android.material.R.id.design_bottom_sheet)?.let { sheet ->
// if device height is 32dp bigger than sheet height, show full sheet
val heightPixels = view.context.resources.displayMetrics.heightPixels
val topPadding = DisplayUtils.dpToPx(context, TOP_OFFSET_BEFORE_SHOWING_FULL_SHEET_DP)
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ ext {
googlePlayWearableVersion = '18.1.0'
coroutinesVersion = '1.8.1'
lifecycleVersion = '2.7.0'
aztecVersion = 'v1.3.45'
aztecVersion = 'v2.1.4'
flipperVersion = '0.176.1'
stateMachineVersion = '0.2.0'
coreKtxVersion = '1.13.1'
Expand Down

0 comments on commit 34c51ae

Please sign in to comment.