1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-11 05:51:21 -08:00

; Check in missing change to AndroidManifest.xml.in

* java/AndroidManifest.xml.in: Register CancellationReceiver.
This commit is contained in:
Po Lu 2024-03-12 10:46:00 +08:00
parent 2704ec54fd
commit fd293c7c67

View file

@ -316,6 +316,13 @@ along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. -->
</intent-filter>
</provider>
<receiver android:name=".EmacsDesktopNotification$CancellationReceiver"
android:exported="false">
<intent-filter>
<action android:name="org.gnu.emacs.DISMISSED" />
</intent-filter>
</receiver>
<service android:name="org.gnu.emacs.EmacsService"
android:directBootAware="false"
android:enabled="true"