Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions RELEASE-NOTES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

25.5
-----
- [*****] [Internal] Updated the app's target SDK to Android 17 (API 37) [https://github.com/woocommerce/woocommerce-android/pull/16413]
- [*] The Pay In Person toggle on the Payments screen no longer looks turned off when its status could not be loaded
- [Internal] Woo POS: every POS analytics event now carries device_type (phone/tablet) and entry_point, so POS usage can be split by form factor and attributed to where POS was opened from [https://github.com/woocommerce/woocommerce-android/pull/16414]
- [*] Woo POS: Remote Tap to Pay failures now explain what went wrong - phone not eligible for Tap to Pay, NFC turned off, or a payment service error - instead of a generic message or raw error text [https://github.com/woocommerce/woocommerce-android/pull/16384]
Expand Down
3 changes: 3 additions & 0 deletions WooCommerce/src/test/resources/robolectric.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Robolectric 4.16.1 supports up to SDK 36. Pin tests to 36 so they keep running there
# after the app's targetSdkVersion was bumped to 37 (Android 17), which Robolectric can't emulate yet.
sdk=36
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Robolectric 4.16.1 supports up to SDK 36. Pin tests to 36 so they keep running there
# after the app's targetSdkVersion was bumped to 37 (Android 17), which Robolectric can't emulate yet.
sdk=36
3 changes: 3 additions & 0 deletions libs/fluxc-plugin/src/test/resources/robolectric.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Robolectric 4.16.1 supports up to SDK 36. Pin tests to 36 so they keep running there
# after the app's targetSdkVersion was bumped to 37 (Android 17), which Robolectric can't emulate yet.
sdk=36
3 changes: 3 additions & 0 deletions libs/fluxc-tests/src/test/resources/robolectric.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Robolectric 4.16.1 supports up to SDK 36. Pin tests to 36 so they keep running there
# after the app's targetSdkVersion was bumped to 37 (Android 17), which Robolectric can't emulate yet.
sdk=36
3 changes: 3 additions & 0 deletions libs/fluxc/src/test/resources/robolectric.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Robolectric 4.16.1 supports up to SDK 36. Pin tests to 36 so they keep running there
# after the app's targetSdkVersion was bumped to 37 (Android 17), which Robolectric can't emulate yet.
sdk=36
3 changes: 3 additions & 0 deletions libs/login/src/test/resources/robolectric.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Robolectric 4.16.1 supports up to SDK 36. Pin tests to 36 so they keep running there
# after the app's targetSdkVersion was bumped to 37 (Android 17), which Robolectric can't emulate yet.
sdk=36
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Robolectric 4.16.1 supports up to SDK 36. Pin tests to 36 so they keep running there
# after the app's targetSdkVersion was bumped to 37 (Android 17), which Robolectric can't emulate yet.
sdk=36
2 changes: 1 addition & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ gradle.ext.mediaPickerSourceCameraBinaryPath = "org.wordpress.mediapicker:source

gradle.ext {
compileSdkVersion = 37
targetSdkVersion = 36
targetSdkVersion = 37
minSdkVersion = 26
}

Expand Down
Loading