2016-06-04 17:28:05 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2020-11-29 20:55:35 +01:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2016-06-04 17:28:05 +02:00
|
|
|
package="info.nightscout.androidaps">
|
|
|
|
|
2021-01-16 18:29:18 +01:00
|
|
|
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
|
2016-06-05 01:40:35 +02:00
|
|
|
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
|
|
|
|
<uses-permission android:name="android.permission.BLUETOOTH" />
|
|
|
|
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
|
|
|
|
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" />
|
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
|
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
|
|
|
<uses-permission android:name="android.permission.WAKE_LOCK" />
|
2016-07-13 13:54:40 +02:00
|
|
|
<uses-permission android:name="android.permission.RECEIVE_SMS" />
|
|
|
|
<uses-permission android:name="android.permission.RECEIVE_MMS" />
|
|
|
|
<uses-permission android:name="android.permission.SEND_SMS" />
|
2019-03-19 19:08:46 +01:00
|
|
|
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
|
2016-07-13 13:54:40 +02:00
|
|
|
<uses-permission android:name="android.permission.SEND_MMS" />
|
2016-11-09 23:58:41 +01:00
|
|
|
<uses-permission android:name="android.permission.VIBRATE" />
|
2017-02-18 10:41:42 +01:00
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
2016-11-17 15:17:02 +01:00
|
|
|
<uses-permission android:name="com.google.android.permission.PROVIDE_BACKGROUND" />
|
2019-05-15 23:26:07 +02:00
|
|
|
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
|
2017-10-14 13:36:38 +02:00
|
|
|
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
|
2018-09-19 15:26:58 +02:00
|
|
|
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
|
2018-04-22 18:24:06 +02:00
|
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
|
2019-06-19 01:38:55 +02:00
|
|
|
<uses-permission android:name="com.dexcom.cgm.EXTERNAL_PERMISSION" />
|
2020-03-09 23:07:55 +01:00
|
|
|
<uses-permission android:name="android.permission.USE_FULL_SCREEN_INTENT" />
|
2017-06-11 17:22:54 +02:00
|
|
|
|
2017-03-31 09:21:40 +02:00
|
|
|
<uses-permission-sdk-23 android:name="android.permission.REQUEST_IGNORE_BATTERY_OPTIMIZATIONS" />
|
2016-06-05 01:40:35 +02:00
|
|
|
|
2016-06-07 21:48:17 +02:00
|
|
|
<!-- To receive data from xdrip. -->
|
|
|
|
<uses-permission android:name="com.eveningoutpost.dexdrip.permissions.RECEIVE_BG_ESTIMATE" />
|
|
|
|
|
2016-06-04 17:28:05 +02:00
|
|
|
<application
|
2016-06-05 01:40:35 +02:00
|
|
|
android:name=".MainApp"
|
2016-06-04 17:28:05 +02:00
|
|
|
android:allowBackup="true"
|
2017-02-23 20:00:33 +01:00
|
|
|
android:icon="${appIcon}"
|
2016-06-04 17:28:05 +02:00
|
|
|
android:label="@string/app_name"
|
2019-03-19 19:08:46 +01:00
|
|
|
android:roundIcon="${appIconRound}"
|
2016-06-04 17:28:05 +02:00
|
|
|
android:supportsRtl="true"
|
2019-08-01 16:29:20 +02:00
|
|
|
android:theme="@style/AppTheme.Launcher"
|
2020-02-20 03:00:37 +01:00
|
|
|
android:fullBackupOnly="false"
|
|
|
|
android:backupAgent=".utils.SPBackupAgent"
|
|
|
|
android:restoreAnyVersion="true">
|
|
|
|
|
|
|
|
<meta-data
|
|
|
|
android:name="com.google.android.backup.api_key"
|
|
|
|
android:value="AEdPqrEAAAAI3JiApyMrbP2QFzZ2fYfCPsgjkRp53Dm2S1-zPQ" />
|
|
|
|
|
2019-03-19 19:08:46 +01:00
|
|
|
<meta-data
|
|
|
|
android:name="com.google.android.gms.car.application"
|
|
|
|
android:resource="@xml/automotive_app_desc" />
|
2019-04-08 17:03:18 +02:00
|
|
|
|
2016-06-04 17:28:05 +02:00
|
|
|
<activity android:name=".MainActivity">
|
|
|
|
<intent-filter>
|
2019-05-15 23:31:46 +02:00
|
|
|
<action android:name="android.intent.action.VIEW" />
|
2016-06-04 17:28:05 +02:00
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2018-07-29 00:08:28 +02:00
|
|
|
<activity android:name=".activities.PreferencesActivity" />
|
2019-03-22 23:08:13 +01:00
|
|
|
<activity android:name=".plugins.general.overview.activities.QuickWizardListActivity">
|
2016-10-20 23:50:31 +02:00
|
|
|
<intent-filter>
|
2019-03-22 23:08:13 +01:00
|
|
|
<action android:name="info.nightscout.androidaps.plugins.general.overview.activities.QuickWizardListActivity" />
|
2018-04-20 17:27:31 +02:00
|
|
|
|
2016-10-20 23:50:31 +02:00
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2020-05-05 18:35:10 +02:00
|
|
|
<activity android:name=".plugins.general.maintenance.activities.PrefImportListActivity" />
|
2019-12-30 13:40:42 +01:00
|
|
|
<activity android:name=".historyBrowser.HistoryBrowseActivity" />
|
2019-10-08 21:20:04 +02:00
|
|
|
<activity android:name=".activities.SurveyActivity" />
|
2020-07-14 16:51:13 +02:00
|
|
|
<activity android:name=".activities.ProfileHelperActivity"
|
|
|
|
android:theme="@style/ProfileHelperAppTheme" />
|
2019-12-09 19:03:26 +01:00
|
|
|
<activity android:name=".activities.StatsActivity" />
|
2020-11-29 20:55:35 +01:00
|
|
|
<activity
|
|
|
|
android:name="com.google.firebase.auth.internal.FederatedSignInActivity"
|
|
|
|
tools:replace="android:launchMode"
|
|
|
|
android:launchMode="standard" />
|
2016-07-06 22:05:28 +02:00
|
|
|
|
2019-04-14 17:55:43 +02:00
|
|
|
<!-- Receive new BG readings from other local apps -->
|
2016-06-05 01:40:35 +02:00
|
|
|
<receiver
|
2019-04-13 14:13:37 +02:00
|
|
|
android:name=".receivers.DataReceiver"
|
|
|
|
android:enabled="true"
|
|
|
|
android:exported="true">
|
2016-06-05 01:40:35 +02:00
|
|
|
<intent-filter>
|
2016-07-18 20:19:55 +02:00
|
|
|
<!-- Receiver from xDrip -->
|
2019-04-13 14:13:37 +02:00
|
|
|
<action android:name="com.eveningoutpost.dexdrip.BgEstimate"/>
|
2016-12-28 14:57:11 +01:00
|
|
|
<!-- Receiver from 640g uploader -->
|
2019-04-13 14:13:37 +02:00
|
|
|
<action android:name="com.eveningoutpost.dexdrip.NS_EMULATOR"/>
|
2017-03-28 22:49:56 +02:00
|
|
|
<!-- Receiver from glimp -->
|
2019-04-13 14:13:37 +02:00
|
|
|
<action android:name="it.ct.glicemia.ACTION_GLUCOSE_MEASURED"/>
|
2019-06-19 01:38:55 +02:00
|
|
|
<!-- Receiver from Dexcom -->
|
|
|
|
<action android:name="com.dexcom.cgm.EXTERNAL_BROADCAST"/>
|
2018-06-11 17:26:31 +02:00
|
|
|
<!-- Receiver from Poctech -->
|
2019-04-13 14:13:37 +02:00
|
|
|
<action android:name="com.china.poctech.data"/>
|
2019-03-22 23:08:13 +01:00
|
|
|
<!-- Receiver from Tomato -->
|
2019-04-13 14:13:37 +02:00
|
|
|
<action android:name="com.fanqies.tomatofn.BgEstimate"/>
|
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
|
|
|
|
|
|
|
<!-- Receive new SMS messages -->
|
|
|
|
<receiver
|
|
|
|
android:name=".receivers.SmsReceiver"
|
|
|
|
android:enabled="true"
|
|
|
|
android:exported="true"
|
|
|
|
android:permission="android.permission.BROADCAST_SMS">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.provider.Telephony.SMS_RECEIVED"/>
|
2016-06-07 21:48:17 +02:00
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
2019-04-13 14:13:37 +02:00
|
|
|
|
2016-07-07 00:56:31 +02:00
|
|
|
<!-- Receiver keepalive, scheduled every 30 min -->
|
2016-07-07 10:34:20 +02:00
|
|
|
<receiver android:name=".receivers.KeepAliveReceiver" />
|
2016-07-07 00:56:31 +02:00
|
|
|
|
2020-03-10 19:46:14 +01:00
|
|
|
<!-- Receive ignore 5m, 15m, 30m requests for carb notifications -->
|
|
|
|
<receiver android:name=".plugins.aps.loop.CarbSuggestionReceiver"></receiver>
|
|
|
|
|
2017-02-17 13:18:36 +01:00
|
|
|
<!-- Auto start -->
|
|
|
|
<receiver
|
2019-12-17 23:24:54 +01:00
|
|
|
android:name=".receivers.AutoStartReceiver"
|
2017-02-17 13:18:36 +01:00
|
|
|
android:enabled="true"
|
|
|
|
android:exported="true">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.BOOT_COMPLETED" />
|
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
|
|
|
|
2018-07-24 22:34:10 +02:00
|
|
|
<provider
|
2019-05-16 13:57:37 +02:00
|
|
|
android:name="androidx.core.content.FileProvider"
|
2018-08-07 21:07:43 +02:00
|
|
|
android:authorities="${applicationId}.fileprovider"
|
2018-07-24 22:34:10 +02:00
|
|
|
android:exported="false"
|
|
|
|
android:grantUriPermissions="true">
|
|
|
|
<meta-data
|
|
|
|
android:name="android.support.FILE_PROVIDER_PATHS"
|
|
|
|
android:resource="@xml/filepaths" />
|
|
|
|
</provider>
|
|
|
|
|
2016-06-07 21:48:17 +02:00
|
|
|
<!-- Service processing incomming data -->
|
|
|
|
<service
|
2018-07-29 00:00:48 +02:00
|
|
|
android:name=".services.DataService"
|
2019-08-26 15:06:34 +02:00
|
|
|
android:exported="false" />
|
2018-09-19 15:26:58 +02:00
|
|
|
<service
|
|
|
|
android:name=".services.LocationService"
|
|
|
|
android:exported="false" />
|
2017-02-17 13:18:36 +01:00
|
|
|
<service
|
2019-03-22 23:08:13 +01:00
|
|
|
android:name=".plugins.general.wear.wearintegration.WatchUpdaterService"
|
2017-02-17 13:18:36 +01:00
|
|
|
android:exported="true">
|
|
|
|
<intent-filter>
|
2019-03-22 23:08:13 +01:00
|
|
|
<!-- <action android:name="com.google.android.gms.wearable.BIND_LISTENER" /> -->
|
|
|
|
<!-- listeners receive events that match the action and data filters -->
|
|
|
|
<action android:name="com.google.android.gms.wearable.CAPABILITY_CHANGED" />
|
|
|
|
<action android:name="com.google.android.gms.wearable.DATA_CHANGED" />
|
|
|
|
|
|
|
|
<data
|
|
|
|
android:host="*"
|
2019-04-08 17:03:18 +02:00
|
|
|
android:pathPrefix="/nightscout_watch_data"
|
|
|
|
android:scheme="wear" />
|
2019-03-22 23:08:13 +01:00
|
|
|
<data
|
|
|
|
android:host="*"
|
2019-04-08 17:03:18 +02:00
|
|
|
android:pathPrefix="/nightscout_watch_data_resend"
|
|
|
|
android:scheme="wear" />
|
2019-03-22 23:08:13 +01:00
|
|
|
<data
|
|
|
|
android:host="*"
|
2019-04-08 17:03:18 +02:00
|
|
|
android:pathPrefix="/nightscout_watch_cancel_bolus"
|
|
|
|
android:scheme="wear" />
|
2019-03-22 23:08:13 +01:00
|
|
|
<data
|
|
|
|
android:host="*"
|
2019-04-08 17:03:18 +02:00
|
|
|
android:pathPrefix="/nightscout_watch_confirmactionstring"
|
|
|
|
android:scheme="wear" />
|
2019-03-22 23:08:13 +01:00
|
|
|
<data
|
|
|
|
android:host="*"
|
2019-04-08 17:03:18 +02:00
|
|
|
android:pathPrefix="/nightscout_watch_initiateactionstring"
|
|
|
|
android:scheme="wear" />
|
2019-03-22 23:08:13 +01:00
|
|
|
<data
|
|
|
|
android:host="*"
|
2019-04-08 17:03:18 +02:00
|
|
|
android:pathPrefix="/openwearsettings"
|
|
|
|
android:scheme="wear" />
|
2019-03-22 23:08:13 +01:00
|
|
|
<data
|
|
|
|
android:host="*"
|
2019-04-08 17:03:18 +02:00
|
|
|
android:pathPrefix="/sendstatustowear"
|
|
|
|
android:scheme="wear" />
|
2019-03-22 23:08:13 +01:00
|
|
|
<data
|
|
|
|
android:host="*"
|
2019-04-08 17:03:18 +02:00
|
|
|
android:pathPrefix="/sendpreferencestowear"
|
|
|
|
android:scheme="wear" />
|
2019-03-22 23:08:13 +01:00
|
|
|
<data
|
|
|
|
android:host="*"
|
2019-04-08 17:03:18 +02:00
|
|
|
android:pathPrefix="/nightscout_watch_basal"
|
|
|
|
android:scheme="wear" />
|
2019-03-22 23:08:13 +01:00
|
|
|
<data
|
|
|
|
android:host="*"
|
2019-04-08 17:03:18 +02:00
|
|
|
android:pathPrefix="/nightscout_watch_bolusprogress"
|
|
|
|
android:scheme="wear" />
|
2019-03-22 23:08:13 +01:00
|
|
|
<data
|
|
|
|
android:host="*"
|
2019-04-08 17:03:18 +02:00
|
|
|
android:pathPrefix="/nightscout_watch_actionconfirmationrequest"
|
|
|
|
android:scheme="wear" />
|
2019-03-22 23:08:13 +01:00
|
|
|
<data
|
|
|
|
android:host="*"
|
2019-04-08 17:03:18 +02:00
|
|
|
android:pathPrefix="/nightscout_watch_changeconfirmationrequest"
|
|
|
|
android:scheme="wear" />
|
2019-03-22 23:08:13 +01:00
|
|
|
<data
|
|
|
|
android:host="*"
|
2019-04-08 17:03:18 +02:00
|
|
|
android:pathPrefix="/nightscout_watch_cancelnotificationrequest"
|
|
|
|
android:scheme="wear" />
|
2017-02-17 13:18:36 +01:00
|
|
|
</intent-filter>
|
2016-11-17 16:38:58 +01:00
|
|
|
</service>
|
2017-02-17 13:18:36 +01:00
|
|
|
<service
|
2019-03-22 23:08:13 +01:00
|
|
|
android:name=".plugins.general.nsclient.services.NSClientService"
|
2017-02-17 13:18:36 +01:00
|
|
|
android:enabled="true"
|
2019-08-26 15:06:34 +02:00
|
|
|
android:exported="true" />
|
2017-06-11 17:22:54 +02:00
|
|
|
<service
|
2018-07-29 00:00:48 +02:00
|
|
|
android:name=".services.AlarmSoundService"
|
2017-06-11 17:22:54 +02:00
|
|
|
android:enabled="true"
|
2019-08-26 15:06:34 +02:00
|
|
|
android:exported="true" />
|
2017-11-28 21:48:46 +01:00
|
|
|
<service
|
2019-03-22 23:08:13 +01:00
|
|
|
android:name=".plugins.general.overview.notifications.DismissNotificationService"
|
2018-04-20 17:27:31 +02:00
|
|
|
android:exported="false" />
|
2017-06-11 17:22:54 +02:00
|
|
|
|
2019-03-22 23:08:13 +01:00
|
|
|
<service android:name=".plugins.general.persistentNotification.DummyService" />
|
|
|
|
<service android:name=".plugins.pump.insight.connection_service.InsightConnectionService" />
|
|
|
|
<service android:name=".plugins.pump.insight.InsightAlertService" />
|
2018-06-17 23:33:32 +02:00
|
|
|
|
2017-06-11 17:22:54 +02:00
|
|
|
<meta-data
|
|
|
|
android:name="io.fabric.ApiKey"
|
|
|
|
android:value="59d462666c664c57b29e1d79ea123e01f8057cfa" />
|
2017-02-17 13:18:36 +01:00
|
|
|
|
2018-04-20 17:27:31 +02:00
|
|
|
<activity
|
2018-05-20 21:55:53 +02:00
|
|
|
android:name=".setupwizard.SetupWizardActivity"
|
2018-04-20 17:27:31 +02:00
|
|
|
android:configChanges="orientation|keyboardHidden|screenSize"
|
2019-03-19 19:08:46 +01:00
|
|
|
android:label="@string/title_activity_setup_wizard"
|
|
|
|
android:theme="@style/AppTheme.NoActionBar" />
|
2018-06-03 23:28:04 +02:00
|
|
|
|
2019-03-19 19:08:46 +01:00
|
|
|
<activity
|
|
|
|
android:name=".activities.SingleFragmentActivity"
|
2018-06-03 23:28:04 +02:00
|
|
|
android:theme="@style/AppTheme" />
|
2019-04-08 17:03:18 +02:00
|
|
|
<activity android:name=".plugins.general.maintenance.activities.LogSettingActivity" />
|
2019-03-19 19:08:46 +01:00
|
|
|
<activity
|
2019-03-22 23:08:13 +01:00
|
|
|
android:name=".plugins.pump.insight.activities.InsightPairingActivity"
|
2019-04-08 17:03:18 +02:00
|
|
|
android:label="@string/insight_pairing"
|
|
|
|
android:theme="@style/AppTheme" />
|
2019-03-19 19:08:46 +01:00
|
|
|
<activity
|
2019-03-22 23:08:13 +01:00
|
|
|
android:name=".plugins.pump.insight.activities.InsightAlertActivity"
|
2019-03-19 19:08:46 +01:00
|
|
|
android:label="@string/pump_alert"
|
2020-03-09 23:07:55 +01:00
|
|
|
android:excludeFromRecents="true"
|
|
|
|
android:launchMode="singleInstance"
|
2019-03-19 19:08:46 +01:00
|
|
|
android:theme="@style/InsightAlertDialog" />
|
|
|
|
<activity
|
2019-03-22 23:08:13 +01:00
|
|
|
android:name=".plugins.pump.insight.activities.InsightPairingInformationActivity"
|
2019-04-08 17:03:18 +02:00
|
|
|
android:label="@string/pairing_information"
|
|
|
|
android:theme="@style/AppTheme" />
|
2019-06-19 01:38:55 +02:00
|
|
|
<activity android:name=".activities.RequestDexcomPermissionActivity" />
|
2020-03-20 17:31:30 +01:00
|
|
|
<activity android:name=".plugins.general.smsCommunicator.activities.SmsCommunicatorOtpActivity">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="info.nightscout.androidaps.plugins.general.smsCommunicator.activities.SmsCommunicatorOtpActivity" />
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2019-05-15 23:26:07 +02:00
|
|
|
|
2019-04-10 18:05:56 +02:00
|
|
|
<!-- Medtronic service and activities -->
|
2019-02-16 21:50:36 +01:00
|
|
|
<service
|
2019-03-02 21:39:14 +01:00
|
|
|
android:name=".plugins.pump.medtronic.service.RileyLinkMedtronicService"
|
2019-02-16 21:50:36 +01:00
|
|
|
android:enabled="true"
|
2019-08-26 15:06:34 +02:00
|
|
|
android:exported="true" />
|
2020-07-12 21:15:11 +02:00
|
|
|
|
2019-03-02 21:39:14 +01:00
|
|
|
<activity android:name=".plugins.pump.medtronic.dialog.MedtronicHistoryActivity" />
|
2020-05-20 21:49:01 +02:00
|
|
|
<activity android:name=".plugins.general.openhumans.OpenHumansLoginActivity"
|
|
|
|
android:launchMode="singleTop">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
|
|
|
|
|
|
<data
|
|
|
|
android:host="setup-openhumans"
|
|
|
|
android:scheme="androidaps" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2018-09-14 19:14:45 +02:00
|
|
|
|
2019-05-15 23:26:07 +02:00
|
|
|
<uses-library android:name="org.apache.http.legacy" android:required="false"/>
|
|
|
|
|
2016-06-04 17:28:05 +02:00
|
|
|
</application>
|
|
|
|
|
2019-03-22 23:08:13 +01:00
|
|
|
</manifest>
|