2022-10-31 20:20:41 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
|
2022-11-02 23:44:53 +01:00
|
|
|
<application android:supportsRtl="true">
|
2022-11-02 11:22:34 +01:00
|
|
|
|
|
|
|
<activity
|
|
|
|
android:name=".widget.WidgetConfigureActivity"
|
|
|
|
android:exported="false"
|
|
|
|
android:theme="@android:style/Theme.Material.Dialog.NoActionBar">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.appwidget.action.APPWIDGET_CONFIGURE" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
|
|
|
|
<receiver
|
|
|
|
android:name=".widget.Widget"
|
|
|
|
android:exported="true">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
|
|
|
|
</intent-filter>
|
|
|
|
|
|
|
|
<meta-data
|
|
|
|
android:name="android.appwidget.provider"
|
|
|
|
android:resource="@xml/widget_info" />
|
|
|
|
</receiver>
|
2022-11-02 23:44:53 +01:00
|
|
|
|
|
|
|
<activity
|
|
|
|
android:name=".activities.TDDStatsActivity"
|
2023-03-25 17:34:50 +01:00
|
|
|
android:exported="false"
|
2023-08-19 10:34:11 +02:00
|
|
|
android:theme="@style/AppTheme" />
|
2022-11-02 23:44:53 +01:00
|
|
|
<activity
|
2023-09-26 17:20:32 +02:00
|
|
|
android:name="app.aaps.ui.activities.BolusProgressHelperActivity"
|
2022-11-02 23:44:53 +01:00
|
|
|
android:exported="false"
|
|
|
|
android:theme="@style/Theme.MaterialComponents.Translucent" />
|
|
|
|
<activity
|
|
|
|
android:name=".activities.ErrorHelperActivity"
|
|
|
|
android:exported="false"
|
|
|
|
android:theme="@style/Theme.MaterialComponents.Translucent" />
|
2022-11-04 14:34:05 +01:00
|
|
|
<activity
|
|
|
|
android:name=".activities.SurveyActivity"
|
|
|
|
android:exported="false"
|
2022-11-27 17:08:46 +01:00
|
|
|
android:theme="@style/AppTheme.NoActionBar" />
|
2022-11-04 14:34:05 +01:00
|
|
|
<activity
|
|
|
|
android:name=".activities.StatsActivity"
|
|
|
|
android:exported="false"
|
2023-08-19 10:00:47 +02:00
|
|
|
android:theme="@style/AppTheme" />
|
2022-11-05 23:20:36 +01:00
|
|
|
<activity
|
2022-11-23 21:14:49 +01:00
|
|
|
android:name=".activities.TreatmentsActivity"
|
2022-11-05 23:20:36 +01:00
|
|
|
android:exported="false"
|
2022-11-27 22:19:40 +01:00
|
|
|
android:theme="@style/AppTheme.NoActionBar" />
|
2022-11-11 09:04:37 +01:00
|
|
|
<activity
|
2022-11-23 21:14:49 +01:00
|
|
|
android:name=".activities.ProfileHelperActivity"
|
|
|
|
android:exported="false"
|
2023-08-19 10:05:02 +02:00
|
|
|
android:theme="@style/AppTheme" />
|
2022-11-23 21:14:49 +01:00
|
|
|
<activity
|
2023-09-26 17:20:32 +02:00
|
|
|
android:name="app.aaps.ui.activities.QuickWizardListActivity"
|
2022-11-11 09:04:37 +01:00
|
|
|
android:exported="false"
|
2023-01-05 12:39:49 +01:00
|
|
|
android:theme="@style/AppTheme">
|
|
|
|
<intent-filter>
|
2023-09-26 17:20:32 +02:00
|
|
|
<action android:name="app.aaps.ui.activities.QuickWizardListActivity" />
|
2023-01-05 12:39:49 +01:00
|
|
|
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2022-11-02 23:44:53 +01:00
|
|
|
|
2023-09-26 17:20:32 +02:00
|
|
|
<service
|
|
|
|
android:name=".services.AlarmSoundService"
|
|
|
|
android:enabled="true"
|
|
|
|
android:exported="false" />
|
|
|
|
|
2022-11-02 11:22:34 +01:00
|
|
|
</application>
|
|
|
|
|
2022-10-31 20:20:41 +01:00
|
|
|
</manifest>
|