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
{{ message }}
This repository has been archived by the owner on May 1, 2023. It is now read-only.
The use of getContext in the MainFragment.java doesn't work on older Fire TV devices such as Fire Stick 2nd Gen as it runs on API 22. getContext requires a minimum of API 23 to work, despite the minimum targeted API of this project being 21.
I would recommend replacing it with getActivity().getApplicationContext() instead as that works on my Fire Stick 2nd Gen running Fire OS 5.2.8.7 and essentially does the same thing.
I attempted to raise the PR myself but didn't have the correct rights to do so 😅
The text was updated successfully, but these errors were encountered:
The use of
getContext
in theMainFragment.java
doesn't work on older Fire TV devices such as Fire Stick 2nd Gen as it runs on API 22.getContext
requires a minimum of API 23 to work, despite the minimum targeted API of this project being 21.I would recommend replacing it with
getActivity().getApplicationContext()
instead as that works on my Fire Stick 2nd Gen running Fire OS 5.2.8.7 and essentially does the same thing.I attempted to raise the PR myself but didn't have the correct rights to do so 😅
The text was updated successfully, but these errors were encountered: