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"
|
|
|
|
package="info.nightscout.androidaps">
|
|
|
|
|
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" />
|
2018-11-12 19:00:06 +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-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" />
|
2018-04-21 22:47:38 +02:00
|
|
|
<uses-permission android:name="sugar.free.sightremote.HISTORY_BROADCASTS" />
|
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-01-18 22:40:08 +01:00
|
|
|
android:roundIcon="${appIconRound}"
|
2016-06-04 17:28:05 +02:00
|
|
|
android:supportsRtl="true"
|
2019-05-15 23:26:07 +02:00
|
|
|
android:theme="@style/AppTheme.NoActionBar"
|
|
|
|
android:fullBackupContent="true">
|
2018-11-12 22:38:49 +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>
|
|
|
|
<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" />
|
2017-02-17 13:18:36 +01:00
|
|
|
<activity
|
2019-04-08 15:38:20 +02:00
|
|
|
android:name=".plugins.general.overview.dialogs.BolusProgressHelperActivity"
|
2017-02-17 13:18:36 +01:00
|
|
|
android:theme="@style/Theme.AppCompat.Translucent" />
|
2017-11-28 21:48:46 +01:00
|
|
|
<activity
|
2019-04-08 15:38:20 +02:00
|
|
|
android:name=".plugins.general.overview.dialogs.ErrorHelperActivity"
|
2017-11-11 22:32:00 +01:00
|
|
|
android:theme="@style/Theme.AppCompat.Translucent" />
|
2018-07-29 00:08:28 +02:00
|
|
|
<activity android:name=".activities.AgreementActivity" />
|
2019-02-26 20:38:27 +01:00
|
|
|
<activity android:name=".plugins.pump.danaR.activities.DanaRHistoryActivity" />
|
|
|
|
<activity android:name=".plugins.pump.danaR.activities.DanaRUserOptionsActivity" />
|
2018-07-29 00:08:28 +02:00
|
|
|
<activity android:name=".activities.TDDStatsActivity" />
|
2019-02-28 23:16:50 +01:00
|
|
|
<activity android:name=".plugins.general.overview.activities.QuickWizardListActivity">
|
2016-10-20 23:50:31 +02:00
|
|
|
<intent-filter>
|
2019-03-02 19:25:22 +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>
|
2019-02-26 20:38:27 +01:00
|
|
|
<activity android:name=".plugins.pump.danaRS.activities.BLEScanActivity">
|
2017-09-13 00:35:03 +02:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="info.nightscout.androidaps.plugins.PumpDanaRS.activities.BLEScanActivity" />
|
2018-04-20 17:27:31 +02:00
|
|
|
|
2017-09-13 00:35:03 +02:00
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2019-02-26 20:38:27 +01:00
|
|
|
<activity android:name=".plugins.pump.danaRS.activities.PairingHelperActivity" />
|
2018-07-29 00:08:28 +02:00
|
|
|
<activity android:name=".activities.HistoryBrowseActivity" />
|
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"/>
|
2017-11-29 16:07:26 +01:00
|
|
|
<!-- Receiver from DexcomG5 -->
|
2019-04-13 14:13:37 +02:00
|
|
|
<action android:name="com.dexcom.cgm.DATA"/>
|
|
|
|
<action android:name="com.dexcom.cgm.AndroidAPSEVGCallback.BROADCAST"/>
|
|
|
|
<action android:name="com.dexcom.cgm.g5.AndroidAPSEVGCallback.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-02-19 16:26:16 +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
|
|
|
|
2017-02-17 13:18:36 +01:00
|
|
|
<!-- Auto start -->
|
|
|
|
<receiver
|
2019-02-28 23:16:50 +01:00
|
|
|
android:name=".plugins.general.nsclient.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>
|
|
|
|
|
|
|
|
<!-- NSClient -->
|
|
|
|
<receiver
|
2019-02-28 23:16:50 +01:00
|
|
|
android:name=".plugins.general.nsclient.receivers.RestartReceiver"
|
2017-02-17 13:18:36 +01:00
|
|
|
android:enabled="true"
|
|
|
|
android:exported="true">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="info.nightscout.client.RESTART" />
|
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
|
|
|
<receiver
|
2019-02-28 23:16:50 +01:00
|
|
|
android:name=".plugins.general.nsclient.receivers.DBAccessReceiver"
|
2017-02-17 13:18:36 +01:00
|
|
|
android:enabled="true"
|
|
|
|
android:exported="true">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="info.nightscout.client.DBACCESS" />
|
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
|
|
|
|
2018-04-22 18:24:06 +02:00
|
|
|
<!-- Network change local receiver -->
|
|
|
|
<receiver android:name=".receivers.NetworkChangeReceiver">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.net.conn.CONNECTIVITY_CHANGE" />
|
|
|
|
<action android:name="android.net.wifi.WIFI_STATE_CHANGED" />
|
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
2017-02-17 13:18:36 +01:00
|
|
|
|
2018-07-24 22:34:10 +02:00
|
|
|
<provider
|
|
|
|
android:name="android.support.v4.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" />
|
2019-03-14 11:18:02 +01:00
|
|
|
</provider>
|
2018-07-24 22:34:10 +02:00
|
|
|
|
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"
|
2016-06-19 20:06:00 +02:00
|
|
|
android:exported="false" />
|
2016-07-07 10:34:20 +02:00
|
|
|
<service
|
2019-02-26 20:38:27 +01:00
|
|
|
android:name=".plugins.pump.danaR.services.DanaRExecutionService"
|
2016-07-07 10:34:20 +02:00
|
|
|
android:enabled="true"
|
2016-07-07 18:04:36 +02:00
|
|
|
android:exported="false" />
|
2016-12-03 17:42:08 +01:00
|
|
|
<service
|
2019-02-26 20:38:27 +01:00
|
|
|
android:name=".plugins.pump.danaRKorean.services.DanaRKoreanExecutionService"
|
2017-04-30 21:08:00 +02:00
|
|
|
android:enabled="true"
|
|
|
|
android:exported="false" />
|
|
|
|
<service
|
2019-02-26 20:38:27 +01:00
|
|
|
android:name=".plugins.pump.danaRv2.services.DanaRv2ExecutionService"
|
2016-12-03 17:42:08 +01:00
|
|
|
android:enabled="true"
|
|
|
|
android:exported="false" />
|
2017-09-13 00:35:03 +02:00
|
|
|
<service
|
2019-02-26 20:38:27 +01:00
|
|
|
android:name=".plugins.pump.danaRS.services.DanaRSService"
|
2017-09-13 00:35:03 +02:00
|
|
|
android:enabled="true"
|
2018-04-20 17:27:31 +02:00
|
|
|
android:exported="true" />
|
2017-02-17 13:18:36 +01:00
|
|
|
<service
|
2019-02-28 23:16:50 +01:00
|
|
|
android:name=".plugins.general.wear.wearintegration.WatchUpdaterService"
|
2017-02-17 13:18:36 +01:00
|
|
|
android:exported="true">
|
|
|
|
<intent-filter>
|
2019-03-07 00:38:18 +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-07 00:38:18 +01:00
|
|
|
<data
|
|
|
|
android:host="*"
|
2019-04-08 17:03:18 +02:00
|
|
|
android:pathPrefix="/nightscout_watch_data_resend"
|
|
|
|
android:scheme="wear" />
|
2019-03-07 00:38:18 +01:00
|
|
|
<data
|
|
|
|
android:host="*"
|
2019-04-08 17:03:18 +02:00
|
|
|
android:pathPrefix="/nightscout_watch_cancel_bolus"
|
|
|
|
android:scheme="wear" />
|
2019-03-07 00:38:18 +01:00
|
|
|
<data
|
|
|
|
android:host="*"
|
2019-04-08 17:03:18 +02:00
|
|
|
android:pathPrefix="/nightscout_watch_confirmactionstring"
|
|
|
|
android:scheme="wear" />
|
2019-03-07 00:38:18 +01:00
|
|
|
<data
|
|
|
|
android:host="*"
|
2019-04-08 17:03:18 +02:00
|
|
|
android:pathPrefix="/nightscout_watch_initiateactionstring"
|
|
|
|
android:scheme="wear" />
|
2019-03-07 00:38:18 +01:00
|
|
|
<data
|
|
|
|
android:host="*"
|
2019-04-08 17:03:18 +02:00
|
|
|
android:pathPrefix="/openwearsettings"
|
|
|
|
android:scheme="wear" />
|
2019-03-07 00:38:18 +01:00
|
|
|
<data
|
|
|
|
android:host="*"
|
2019-04-08 17:03:18 +02:00
|
|
|
android:pathPrefix="/sendstatustowear"
|
|
|
|
android:scheme="wear" />
|
2019-03-07 00:38:18 +01:00
|
|
|
<data
|
|
|
|
android:host="*"
|
2019-04-08 17:03:18 +02:00
|
|
|
android:pathPrefix="/sendpreferencestowear"
|
|
|
|
android:scheme="wear" />
|
2019-03-07 00:38:18 +01:00
|
|
|
<data
|
|
|
|
android:host="*"
|
2019-04-08 17:03:18 +02:00
|
|
|
android:pathPrefix="/nightscout_watch_basal"
|
|
|
|
android:scheme="wear" />
|
2019-03-07 00:38:18 +01:00
|
|
|
<data
|
|
|
|
android:host="*"
|
2019-04-08 17:03:18 +02:00
|
|
|
android:pathPrefix="/nightscout_watch_bolusprogress"
|
|
|
|
android:scheme="wear" />
|
2019-03-07 00:38:18 +01:00
|
|
|
<data
|
|
|
|
android:host="*"
|
2019-04-08 17:03:18 +02:00
|
|
|
android:pathPrefix="/nightscout_watch_actionconfirmationrequest"
|
|
|
|
android:scheme="wear" />
|
2019-03-07 00:38:18 +01:00
|
|
|
<data
|
|
|
|
android:host="*"
|
2019-04-08 17:03:18 +02:00
|
|
|
android:pathPrefix="/nightscout_watch_changeconfirmationrequest"
|
|
|
|
android:scheme="wear" />
|
2019-03-07 00:38:18 +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-02-28 23:16:50 +01:00
|
|
|
android:name=".plugins.general.nsclient.services.NSClientService"
|
2017-02-17 13:18:36 +01:00
|
|
|
android:enabled="true"
|
|
|
|
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"
|
|
|
|
android:exported="true" />
|
2017-11-28 21:48:46 +01:00
|
|
|
<service
|
2019-02-28 23:16:50 +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-02-28 23:16:50 +01:00
|
|
|
<service android:name=".plugins.general.persistentNotification.DummyService" />
|
2019-02-26 20:38:27 +01:00
|
|
|
<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-01-18 22:40:08 +01:00
|
|
|
android:label="@string/title_activity_setup_wizard"
|
|
|
|
android:theme="@style/AppTheme.NoActionBar" />
|
2018-06-03 23:28:04 +02:00
|
|
|
|
2019-01-18 22:40:08 +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-01-18 22:40:08 +01:00
|
|
|
<activity
|
2019-02-26 20:38:27 +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-01-18 22:40:08 +01:00
|
|
|
<activity
|
2019-02-26 20:38:27 +01:00
|
|
|
android:name=".plugins.pump.insight.activities.InsightAlertActivity"
|
2019-01-18 22:40:08 +01:00
|
|
|
android:label="@string/pump_alert"
|
|
|
|
android:theme="@style/InsightAlertDialog" />
|
|
|
|
<activity
|
2019-02-26 20:38:27 +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-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-14 11:18:02 +01:00
|
|
|
</manifest>
|