Javadoc.
This commit is contained in:
parent
59d3c79ed5
commit
e27f16f5f8
2 changed files with 5 additions and 1 deletions
|
@ -73,7 +73,7 @@
|
||||||
<activity android:name=".plugins.pump.danaRS.activities.PairingHelperActivity" />
|
<activity android:name=".plugins.pump.danaRS.activities.PairingHelperActivity" />
|
||||||
<activity android:name=".activities.HistoryBrowseActivity" />
|
<activity android:name=".activities.HistoryBrowseActivity" />
|
||||||
|
|
||||||
<!-- Receive new BG readings from other local aaps -->
|
<!-- Receive new BG readings from other local apps -->
|
||||||
<receiver
|
<receiver
|
||||||
android:name=".receivers.DataReceiver"
|
android:name=".receivers.DataReceiver"
|
||||||
android:enabled="true"
|
android:enabled="true"
|
||||||
|
|
|
@ -1,3 +1,7 @@
|
||||||
package info.nightscout.androidaps.receivers;
|
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 {}
|
public class SmsReceiver extends DataReceiver {}
|
||||||
|
|
Loading…
Reference in a new issue