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

Commit e965eca4 authored by Kevin Hufnagle's avatar Kevin Hufnagle Committed by android-build-merger
Browse files

docs: Fixed constants in manifest sample related to battery level.

am: d00481be

Change-Id: I6127dce2d95751af5dab0485d9e12d07ac9be129
parents 3aeade44 d00481be
Loading
Loading
Loading
Loading
+5 −4
Original line number Diff line number Diff line
@@ -141,10 +141,11 @@ receiver. The receiver is triggered whenever the device battery becomes low or e
condition by listening for {@link android.content.Intent#ACTION_BATTERY_LOW} and {@link
android.content.Intent#ACTION_BATTERY_OKAY}.</p>

<pre>&lt;receiver android:name=".BatteryLevelReceiver">
<pre>
&lt;receiver android:name=".BatteryLevelReceiver">
  &lt;intent-filter>
  &lt;action android:name="android.intent.action.ACTION_BATTERY_LOW"/>
  &lt;action android:name="android.intent.action.ACTION_BATTERY_OKAY"/>
    &lt;action android:name="android.intent.action.BATTERY_LOW"/>
    &lt;action android:name="android.intent.action.BATTERY_OKAY"/>
  &lt;/intent-filter>
&lt;/receiver></pre>