Conversation
There was a problem hiding this comment.
Pull request overview
This PR increases the minimum Android SDK version from API 21 (Android 5.0 Lollipop) to API 23 (Android 6.0 Marshmallow). This change drops support for Android 5.0 and 5.1 devices, potentially enabling the use of newer Android APIs and features while reducing the testing matrix.
Key Changes
- Updated
minSdkVersionconstant from 21 to 23 in the centralized app configuration
| const val compileSdkVersion = 36 | ||
| const val buildToolsVersion = "36.0.0" | ||
| const val minSdkVersion = 21 | ||
| const val minSdkVersion = 23 |
There was a problem hiding this comment.
The minSdkVersion has been updated to 23, but the project documentation in .github/copilot-instructions.md still references the old value. The documentation states "Minimum SDK: API 21 (Android 5.0)" on line 14 and "Min SDK: 21" on line 559. These documentation sections need to be updated to reflect the new minimum SDK version of 23 (Android 6.0) to maintain consistency between code and documentation.
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## master #300 +/- ##
=======================================
Coverage 61.88% 61.88%
=======================================
Files 37 37
Lines 1073 1073
Branches 104 104
=======================================
Hits 664 664
Misses 393 393
Partials 16 16 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
No description provided.