Android IntentService not starting

后端 未结 6 502
别那么骄傲
别那么骄傲 2021-01-11 21:54

I know this question has been asked many times, but all the other threads didn\'t solve my issue at all, I can\'t see anything wrong with my code. Maybe I missed something h

6条回答
  •  天命终不由人
    2021-01-11 22:02

    I solved a Problem with my Intent Service not starting by using

    Intent intent = new Intent(this,UploadService.class);
        this.startService(intent);
    

    to start my Service

提交回复
热议问题