Skip to content

Commit

Permalink
Merge pull request #2075 from PaulWoitaschek/tasker_intent
Browse files Browse the repository at this point in the history
Set the WidgetButtonReceiver as exported in order to be used by tasker.
  • Loading branch information
PaulWoitaschek committed Aug 6, 2023
2 parents 620054b + dddd60f commit 384b1da
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions playback/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<manifest xmlns:tools="http://schemas.android.com/tools"
xmlns:android="http://schemas.android.com/apk/res/android">

<application>

Expand All @@ -11,9 +12,11 @@
</intent-filter>
</receiver>

<!-- exported to be used with tasker -->
<receiver
android:name="voice.playback.receiver.WidgetButtonReceiver"
android:exported="false">
android:exported="true"
tools:ignore="ExportedReceiver">

<intent-filter>
<action android:name="voice.WidgetAction" />
Expand Down

0 comments on commit 384b1da

Please sign in to comment.