Skip to content

Instantly share code, notes, and snippets.

View joel-teratis's full-sized avatar

Joel Renk joel-teratis

View GitHub Profile
@joel-teratis
joel-teratis / AndroidManifest.xml
Created June 26, 2025 10:01
Android Exact Notification Scheduling
<manifest xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools">
<uses-permission android:name="android.permission.SCHEDULE_EXACT_ALARM"/>
...
<application android:name=".MainApplication" android:label="@string/app_name" android:icon="@mipmap/ic_launcher" android:allowBackup="true" android:theme="@style/AppTheme" android:supportsRtl="true" android:hardwareAccelerated="true" android:roundIcon="@mipmap/ic_launcher_round">
...
<receiver android:name=".NotificationReceiver" android:exported="true"/>
...
</application>
</manifest>