Loading packages/SubscribedFeedsProvider/src/com/android/providers/subscribedfeeds/SubscribedFeedsBroadcastReceiver.java +5 −1 Original line number Diff line number Diff line Loading @@ -16,6 +16,7 @@ package com.android.providers.subscribedfeeds; import android.app.Activity; import android.content.BroadcastReceiver; import android.content.Context; import android.content.Intent; Loading @@ -35,6 +36,9 @@ public class SubscribedFeedsBroadcastReceiver extends BroadcastReceiver { public void onReceive(Context context, Intent intent) { if (Log.isLoggable(TAG, Log.VERBOSE)) Log.v(TAG, "Received intent " + intent); if (intent.getAction().equals(Intent.ACTION_REMOTE_INTENT)) { setResultCode(Activity.RESULT_OK); } intent.setClass(context, SubscribedFeedsIntentService.class); context.startService(intent); } Loading Loading
packages/SubscribedFeedsProvider/src/com/android/providers/subscribedfeeds/SubscribedFeedsBroadcastReceiver.java +5 −1 Original line number Diff line number Diff line Loading @@ -16,6 +16,7 @@ package com.android.providers.subscribedfeeds; import android.app.Activity; import android.content.BroadcastReceiver; import android.content.Context; import android.content.Intent; Loading @@ -35,6 +36,9 @@ public class SubscribedFeedsBroadcastReceiver extends BroadcastReceiver { public void onReceive(Context context, Intent intent) { if (Log.isLoggable(TAG, Log.VERBOSE)) Log.v(TAG, "Received intent " + intent); if (intent.getAction().equals(Intent.ACTION_REMOTE_INTENT)) { setResultCode(Activity.RESULT_OK); } intent.setClass(context, SubscribedFeedsIntentService.class); context.startService(intent); } Loading