You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The SimpleNetworkDetector class currently uses deprecated Android APIs:
getActiveNetworkInfo() (deprecated in API 29).
ConnectivityManager.TYPE_* constants (deprecated in API 28).
These deprecated APIs may cause compatibility issues with Android 10 (API 29) and above, and could lead to maintainability challenges as Android evolves.
Why This Is Important
Modernizing the implementation ensures compatibility with Android 10 and newer versions.
Reduces reliance on deprecated methods, making the codebase more maintainable and future-proof.
Aligns the project with modern Android development best practices, benefiting both maintainers and users.
Thank you for considering this issue, and I look forward to contributing to its resolution.
The text was updated successfully, but these errors were encountered:
Description
The
SimpleNetworkDetector
class currently uses deprecated Android APIs:getActiveNetworkInfo()
(deprecated in API 29).ConnectivityManager.TYPE_*
constants (deprecated in API 28).These deprecated APIs may cause compatibility issues with Android 10 (API 29) and above, and could lead to maintainability challenges as Android evolves.
Why This Is Important
Thank you for considering this issue, and I look forward to contributing to its resolution.
The text was updated successfully, but these errors were encountered: