Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 34efcf34 authored by Moez Bhatti's avatar Moez Bhatti
Browse files

#534

parent d441dbb2
Loading
Loading
Loading
Loading
+0 −17
Original line number Diff line number Diff line
@@ -462,23 +462,6 @@
                <action android:name="com.moez.QKSMS.ShouldIAnswerService" />
            </intent-filter>
        </service>

        <!-- Service that delivers messages from the phone "quick response" -->
        <service
            android:name=".service.HeadlessSmsSendService"
            android:exported="true"
            android:permission="android.permission.SEND_RESPOND_VIA_MESSAGE">
            <intent-filter>
                <action android:name="android.intent.action.RESPOND_VIA_MESSAGE" />

                <category android:name="android.intent.category.DEFAULT" />

                <data android:scheme="sms" />
                <data android:scheme="smsto" />
                <data android:scheme="mms" />
                <data android:scheme="mmsto" />
            </intent-filter>
        </service>
        <service
            android:name=".service.PushbulletService"
            android:permission="com.pushbullet.android.permission.READ_MESSAGING_EXTENSION_DATA">
+0 −12
Original line number Diff line number Diff line
package com.moez.QKSMS.service;

import android.app.Service;
import android.content.Intent;
import android.os.IBinder;

public class HeadlessSmsSendService extends Service {
    @Override
    public IBinder onBind(Intent intent) {
        return null;
    }
}