Skip to content

Commit 26da42f

Browse files
agnostic-apolloLeonid Pliushch
authored andcommitted
- Added com.termux.permission.RUN_COMMAND permission to FireReceiver.
- Changed `ResultsService` service name to `PluginResultsService`.
1 parent d52f84f commit 26da42f

1 file changed

Lines changed: 7 additions & 2 deletions

File tree

app/src/main/AndroidManifest.xml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
android:label="@string/app_name"
1010
android:supportsRtl="true"
1111
android:theme="@style/AppTheme">
12+
1213
<!--
1314
This is the "edit" Activity. Note that Locale will reject plug-in Activities for the following reasons:·
1415
- Missing "android:label=[...]"
@@ -40,14 +41,18 @@
4041
<receiver
4142
android:name=".FireReceiver"
4243
android:exported="true"
43-
android:process=":background">
44+
android:process=":background"
45+
android:permission="com.termux.permission.RUN_COMMAND">
4446
<!-- This Intent filter allows the plug-in to discovered by Locale. -->
4547
<intent-filter>
4648
<action android:name="com.twofortyfouram.locale.intent.action.FIRE_SETTING" />
4749
</intent-filter>
4850
</receiver>
4951

50-
<service android:name=".ResultsService" />
52+
<!--
53+
This is service that will receive execution result from the execution service via a PendingIntent
54+
-->
55+
<service android:name=".PluginResultsService"/>
5156
</application>
5257

5358
</manifest>

0 commit comments

Comments
 (0)