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"
|
|
|
|
android:exported="false" />
|
|
|
|
<activity
|
|
|
|
android:name="info.nightscout.ui.activities.BolusProgressHelperActivity"
|
|
|
|
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"
|
|
|
|
android:theme="@style/AppTheme" />
|
|
|
|
<activity
|
|
|
|
android:name=".activities.StatsActivity"
|
|
|
|
android:exported="false"
|
|
|
|
android:theme="@style/AppTheme" />
|
2022-11-05 23:20:36 +01:00
|
|
|
<activity
|
|
|
|
android:name="info.nightscout.ui.activities.TreatmentsActivity"
|
|
|
|
android:exported="false"
|
|
|
|
android:theme="@style/AppTheme" />
|
2022-11-02 23:44:53 +01:00
|
|
|
|
2022-11-02 11:22:34 +01:00
|
|
|
</application>
|
|
|
|
|
2022-10-31 20:20:41 +01:00
|
|
|
</manifest>
|