If Service accesses process some long-running options. what issue might you encounter and how could you address it?

Service is started on the main application thread (or UI thread) in the Activity. So the long-running should be executed in a worker thread, otherwise it will block the UI thread.