This commit is contained in:
Johannes Mockenhaupt 2019-04-14 17:55:43 +02:00
parent 59d3c79ed5
commit e27f16f5f8
No known key found for this signature in database
GPG key ID: 9E1EA6AF7BBBB0D1
2 changed files with 5 additions and 1 deletions

View file

@ -73,7 +73,7 @@
<activity android:name=".plugins.pump.danaRS.activities.PairingHelperActivity" />
<activity android:name=".activities.HistoryBrowseActivity" />
<!-- Receive new BG readings from other local aaps -->
<!-- Receive new BG readings from other local apps -->
<receiver
android:name=".receivers.DataReceiver"
android:enabled="true"

View file

@ -1,3 +1,7 @@
package info.nightscout.androidaps.receivers;
/**
* Forward received SMS intents. This is a separate class, because unlike local broadcasts handled by DataReceiver,
* receiving SMS requires a special permission in the manifest, which necessitates a separate receiver.
*/
public class SmsReceiver extends DataReceiver {}