We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a93c258 commit 20be623Copy full SHA for 20be623
1 file changed
panel-core/src/main/kotlin/com/redmadrobot/debug/core/util/DebugPanelNotification.kt
@@ -82,7 +82,9 @@ internal class DebugPanelNotification(private val context: Context) {
82
}
83
84
private fun getPanelPendingIntent(context: Context): PendingIntent? {
85
- val openPanelIntent = Intent(DebugPanelBroadcastReceiver.ACTION_OPEN_DEBUG_PANEL)
+ val openPanelIntent = Intent(DebugPanelBroadcastReceiver.ACTION_OPEN_DEBUG_PANEL).apply {
86
+ setPackage(context.packageName)
87
+ }
88
return PendingIntent.getBroadcast(
89
context,
90
0,
0 commit comments