Skip to content
Open
Show file tree
Hide file tree
Changes from 4 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]
- [*] QR login now asks you to choose a store when your WordPress.com account has multiple sites instead of preselecting one [https://github.com/woocommerce/woocommerce-android/pull/16400]
- [Internal] Close analytics gaps in the Remote Tap to Pay flow: transport on the reader-ready event, cause chains in error descriptions, no stale card reader model, and a real session ended reason [https://github.com/woocommerce/woocommerce-android/pull/16368]
- [*] Tap to Pay no longer disappears from the Payments screen shortly after it appears [https://github.com/woocommerce/woocommerce-android/pull/16370]
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 @@ -195,7 +195,7 @@ gradle.ext.mediaPickerSourceCameraBinaryPath = "org.wordpress.mediapicker:source

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

Expand Down
Loading