aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/AndroidManifest.xml
diff options
context:
space:
mode:
authorAlex Ning <chineseperson5@gmail.com>2020-09-09 07:26:02 +0000
committerAlex Ning <chineseperson5@gmail.com>2020-09-09 07:26:02 +0000
commit6d8dcc8fe7ba26708e2151c0d4cd5927263795e6 (patch)
treed2a1f9fbb0ce02c2ccb7ee70487494448486e083 /app/src/main/AndroidManifest.xml
parent8422858ec989fdff9cd2ee1da32ea0127ee94e2c (diff)
downloadinfinity-for-reddit-6d8dcc8fe7ba26708e2151c0d4cd5927263795e6.tar
infinity-for-reddit-6d8dcc8fe7ba26708e2151c0d4cd5927263795e6.tar.gz
infinity-for-reddit-6d8dcc8fe7ba26708e2151c0d4cd5927263795e6.tar.bz2
infinity-for-reddit-6d8dcc8fe7ba26708e2151c0d4cd5927263795e6.tar.lz
infinity-for-reddit-6d8dcc8fe7ba26708e2151c0d4cd5927263795e6.tar.xz
infinity-for-reddit-6d8dcc8fe7ba26708e2151c0d4cd5927263795e6.tar.zst
infinity-for-reddit-6d8dcc8fe7ba26708e2151c0d4cd5927263795e6.zip
Add PullNotificationAlarmReceiver, another implementation of pull notifications. Fix a bug in NotificationPreferenceFragment.
Diffstat (limited to '')
-rw-r--r--app/src/main/AndroidManifest.xml4
1 files changed, 4 insertions, 0 deletions
diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml
index 684a33d2..fd4695f7 100644
--- a/app/src/main/AndroidManifest.xml
+++ b/app/src/main/AndroidManifest.xml
@@ -14,6 +14,8 @@
<uses-permission-sdk-23 android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
+ <uses-permission android:name="android.permission.WAKE_LOCK" />
+
<application
android:name=".Infinity"
android:allowBackup="true"
@@ -345,6 +347,8 @@
android:name=".Service.SubmitPostService"
android:enabled="true"
android:exported="false" />
+
+ <receiver android:process=":remote" android:name=".PullNotificationAlarmReceiver" />
</application>
</manifest> \ No newline at end of file