rely on klinkerapps library at sending SMS too, not just MMS

This commit is contained in:
tibbi 2020-04-13 13:06:30 +02:00
parent fce6ed2640
commit cd26b96384
4 changed files with 29 additions and 56 deletions

View file

@ -112,7 +112,7 @@
</intent-filter>
</service>
<service android:name="com.android.mms.transaction.TransactionService"/>
<service android:name="com.android.mms.transaction.TransactionService" />
<receiver
android:name=".receivers.SmsReceiver"
@ -135,14 +135,17 @@
<receiver
android:name=".receivers.MmsSentReceiver"
android:taskAffinity="com.klinker.android.messaging.MMS_SENT"/>
android:taskAffinity="com.klinker.android.messaging.MMS_SENT" />
<receiver
android:name=".receivers.MmsReceiver"
android:exported="true"
android:taskAffinity="com.klinker.android.messaging.MMS_RECEIVED" />
<receiver android:name=".receivers.SmsSentReceiver" />
<receiver
android:name=".receivers.SmsSentReceiver"
android:exported="true"
android:taskAffinity="${applicationId}.SMS_SENT" />
<activity-alias
android:name=".activities.SplashActivity.Red"