I am building a Custom View in a library module that every 30 seconds displays a question (obtained from a REST Api) and allows the user to select one of the possible answers.
I need to make use of that library in the app module. The only thing that the MainActivity from the app module should do is to display a video and add the Custom View on top of it.
All the business and UI logic should be handled in the library (fetching the questions from the server, handling a timer, handling the answer selected, etc.)
So the app consists of only one Activity and the library consists of a CustomView, a usecase, a repository, and an ApiService class to make the Api request using retrofit.
Since the library doesn't have a ViewModel (because there are no Fragments or Activities in the library module), I am executing the usecase from the CustomView.
CustomView --> UseCase (launches couroutine) --> Repository --> RetrofitService
Is there a cleaner/proper way to do this? I've been told that calling an api from the view is a very bad practice, but I don't know any other way to do it at the moment.
A custom View should not hold the data at all. Custom view couldn't handle the view recreation, for example. The proper way is to use a Fragment instead of the custom view.