Skip to content

Commit

Permalink
Create NotificationActionService.java
Browse files Browse the repository at this point in the history
  • Loading branch information
prateek-chaubey authored Jun 24, 2024
1 parent 3ee7cc9 commit e119bb4
Showing 1 changed file with 17 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
package com.google.android.youtube.pro;


import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.util.Log;

public class NotificationActionService extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
context.sendBroadcast(new Intent("TRACKS_TRACKS")
.putExtra("actionname", intent.getAction()));

// Log.e("ButtonAction",intent.getAction().toString());
}
}

0 comments on commit e119bb4

Please sign in to comment.