This commit is contained in:
Ryan Warsaw 2017-03-06 21:05:21 -05:00
Родитель fbc3dc0cf3
Коммит 4764fe651e
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: AA190EDC22740F7B
5 изменённых файлов: 8 добавлений и 8 удалений

Просмотреть файл

@ -87,27 +87,27 @@
Receivers for various android system events.
-->
<receiver
android:name=".recievers.DSOAirplaneModeReceiver"
android:name=".receivers.DSOAirplaneModeReceiver"
android:enabled="true">
<intent-filter>
<action android:name="android.media.action.DISPLAY_NOTIFICATION" />
<action android:name="android.intent.action.AIRPLANE_MODE" />
</intent-filter>
</receiver>
<receiver android:name=".recievers.DSOStorageReceiver">
<receiver android:name=".receivers.DSOStorageReceiver">
<intent-filter>
<action android:name="android.media.action.DISPLAY_NOTIFICATION" />
<action android:name="android.intent.action.DEVICE_STORAGE_LOW" />
</intent-filter>
</receiver>
<receiver android:name=".recievers.DSONetworkStateReceiver">
<receiver android:name=".receivers.DSONetworkStateReceiver">
<intent-filter>
<action android:name="android.media.action.DISPLAY_NOTIFICATION" />
<action android:name="android.net.conn.CONNECTIVITY_CHANGE" />
<action android:name="android.net.wifi.WIFI_STATE_CHANGED" />
</intent-filter>
</receiver>
<receiver android:name=".recievers.DSOBatteryReceiver">
<receiver android:name=".receivers.DSOBatteryReceiver">
<intent-filter>
<action android:name="android.media.action.DISPLAY_NOTIFICATION" />
<action android:name="android.intent.action.ACTION_BATTERY_LOW" />

Просмотреть файл

@ -1,4 +1,4 @@
package com.mozilla.hackathon.kiboko.recievers;
package com.mozilla.hackathon.kiboko.receivers;
import android.content.BroadcastReceiver;
import android.content.Context;

Просмотреть файл

@ -1,4 +1,4 @@
package com.mozilla.hackathon.kiboko.recievers;
package com.mozilla.hackathon.kiboko.receivers;
import android.content.BroadcastReceiver;
import android.content.Context;

Просмотреть файл

@ -1,4 +1,4 @@
package com.mozilla.hackathon.kiboko.recievers;
package com.mozilla.hackathon.kiboko.receivers;
import android.app.NotificationManager;
import android.content.BroadcastReceiver;

Просмотреть файл

@ -1,4 +1,4 @@
package com.mozilla.hackathon.kiboko.recievers;
package com.mozilla.hackathon.kiboko.receivers;
import android.content.BroadcastReceiver;
import android.content.Context;