Android service not showing logs?

Lisa Anne

I am a bit confused,

it seems that my Service does not print logs,

the service starts regularly (I can debug it), I see all other logs,

but from the service no logs.

Please what am I missing here?

@Override
protected void onHandleIntent(Intent intent) {
    Log.e("TAG","Downlaoding devices list");//This should log something!
Sybregunne

Chances are your IntentService is not getting called. try using the whole package name of the IntentService. I've seen this somewhere I'll post a link if I find it. Something like this...

Intent intent = new Intent(this/*Context*/,com.myapp.MyIntentService.class); //as opposed to // new Intent(this, MyIntentService.class); startService(intent);

Edit: I found the link. intentService : why my onHandleIntent is never called?

この記事はインターネットから収集されたものであり、転載の際にはソースを示してください。

侵害の場合は、連絡してください[email protected]

編集
0

コメントを追加

0

関連記事

分類Dev

Logs aren't showing in logs folder in codeigniter 3

分類Dev

Android studio terminal not showing

分類Dev

Permission dialog is not showing in android

分類Dev

Android dialog not showing up

分類Dev

Not showing Spinner value in android

分類Dev

android: Custom view not showing

分類Dev

Android - listView not showing

分類Dev

Azure App Service on Linux not displaying web server logs

分類Dev

Excessive logs from ViewDragHelper from Android drawer

分類Dev

How to send android app logs to remote server?

分類Dev

Latitude and Longitude showing as 0 in Android

分類Dev

Textview properties not showing in android studio

分類Dev

Xamarin Image Source Not Showing on Android

分類Dev

Android Studio not showing attributes for button

分類Dev

Android - my recyclerview is not showing data

分類Dev

Android Studio Import popup not showing

分類Dev

Android:AsyncTask vs Service

分類Dev

Android - implementing startForeground for a service?

分類Dev

Android MediaProjectionManager in Service

分類Dev

FusedLocationProviderClient With Service Android Kotlin

分類Dev

Android Location Manager in Service

分類Dev

android : stop a sticky service

分類Dev

Android Push Notifications or a Service?

分類Dev

android service, context, builder

分類Dev

Error in android service class

分類Dev

Eclipse 2018-12 (4.10.0) Version not showing Spring Framework default logs in console?

分類Dev

Azure Kubernetes - Jaeger UI is not showing the Service deployed as a part of ISTIO?

分類Dev

Azure app service plan stopped showing monitoring info

分類Dev

AlertDialog inside service not moving up when showing keyboard

Related 関連記事

ホットタグ

アーカイブ