2022-02-11 05:58:07 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2022-09-12 09:14:24 +02:00
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
2022-02-11 05:58:07 +01:00
|
|
|
|
|
|
|
<application>
|
2023-06-01 12:23:31 +02:00
|
|
|
<activity
|
|
|
|
android:name=".ui.EopatchActivity"
|
2023-08-19 15:47:30 +02:00
|
|
|
android:configChanges="orientation|layoutDirection|screenLayout|density|screenSize|smallestScreenSize"
|
|
|
|
android:theme="@style/AppTheme" />
|
2023-06-01 12:23:31 +02:00
|
|
|
<activity
|
|
|
|
android:name=".ui.AlarmHelperActivity"
|
|
|
|
android:configChanges="orientation|layoutDirection|screenLayout|density|screenSize|smallestScreenSize"/>
|
|
|
|
<activity
|
|
|
|
android:name=".ui.DialogHelperActivity"
|
|
|
|
android:configChanges="orientation|layoutDirection|screenLayout|density|screenSize|smallestScreenSize"/>
|
2022-02-11 05:58:07 +01:00
|
|
|
<receiver android:name=".OsAlarmReceiver"/>
|
|
|
|
</application>
|
|
|
|
|
|
|
|
</manifest>
|