AndroidAPS/app/src/main/AndroidManifest.xml

311 lines
14 KiB
XML
Raw Normal View History

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" />
<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" />
<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" />
<uses-permission android:name="android.permission.USE_FULL_SCREEN_INTENT" />
2017-06-11 17:22:54 +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"
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-04-24 12:00:31 +02: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" />
<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" />
2019-07-30 18:49:56 +02:00
2016-06-04 17:28:05 +02:00
<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-12-20 21:52:37 +01:00
android:name=".activities.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-12-20 19:46:07 +01:00
android:name=".activities.ErrorHelperActivity"
2017-11-11 22:32:00 +01:00
android:theme="@style/Theme.AppCompat.Translucent" />
2019-03-22 23:08:13 +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-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>
2019-03-22 23:08:13 +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-03-22 23:08:13 +01:00
<activity android:name=".plugins.pump.danaRS.activities.PairingHelperActivity" />
2020-04-24 12:00:31 +02:00
<activity android:name=".historyBrowser.HistoryBrowseActivity" />
2019-10-08 21:20:04 +02:00
<activity android:name=".activities.SurveyActivity" />
2019-12-09 19:03:26 +01:00
<activity android:name=".activities.StatsActivity" />
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-07-30 18:49:56 +02:00
android:name=".receivers.DataReceiver"
android:enabled="true"
android:exported="true">
2016-06-05 01:40:35 +02:00
<intent-filter>
<!-- Receiver from xDrip -->
2019-07-30 18:49:56 +02:00
<action android:name="com.eveningoutpost.dexdrip.BgEstimate" />
2016-12-28 14:57:11 +01:00
<!-- Receiver from 640g uploader -->
2019-07-30 18:49:56 +02:00
<action android:name="com.eveningoutpost.dexdrip.NS_EMULATOR" />
2017-03-28 22:49:56 +02:00
<!-- Receiver from glimp -->
2019-07-30 18:49:56 +02:00
<action android:name="it.ct.glicemia.ACTION_GLUCOSE_MEASURED" />
2019-06-19 01:38:55 +02:00
<!-- Receiver from Dexcom -->
2019-07-30 18:49:56 +02:00
<action android:name="com.dexcom.cgm.EXTERNAL_BROADCAST" />
2018-06-11 17:26:31 +02:00
<!-- Receiver from Poctech -->
2019-07-30 18:49:56 +02:00
<action android:name="com.china.poctech.data" />
2019-03-22 23:08:13 +01:00
<!-- Receiver from Tomato -->
2019-07-30 18:49:56 +02:00
<action android:name="com.fanqies.tomatofn.BgEstimate" />
</intent-filter>
</receiver>
<!-- Receive new SMS messages -->
<receiver
2019-07-30 18:49:56 +02:00
android:name=".receivers.SmsReceiver"
android:enabled="true"
android:exported="true"
android:permission="android.permission.BROADCAST_SMS">
<intent-filter>
2019-07-30 18:49:56 +02:00
<action android:name="android.provider.Telephony.SMS_RECEIVED" />
2016-06-07 21:48:17 +02:00
</intent-filter>
</receiver>
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-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-09 14:17:17 +02:00
android:exported="false"
android:permission="android.permission.BIND_JOB_SERVICE"/>
2018-09-19 15:26:58 +02:00
<service
android:name=".services.LocationService"
android:exported="false" />
2016-07-07 10:34:20 +02:00
<service
2019-03-30 21:48:56 +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-03-22 23:08:13 +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-03-22 23:08:13 +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-03-22 23:08:13 +01:00
android:name=".plugins.pump.danaRS.services.DanaRSService"
2017-09-13 00:35:03 +02:00
android:enabled="true"
2019-08-09 14:17:17 +02:00
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>
</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-09 14:17:17 +02:00
android:exported="false" />
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-09 14:17:17 +02:00
android:exported="false" />
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"
android:label="@string/title_activity_setup_wizard"
android:theme="@style/AppTheme.NoActionBar" />
2018-06-03 23:28:04 +02: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" />
<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" />
<activity
2019-03-22 23:08:13 +01:00
android:name=".plugins.pump.insight.activities.InsightAlertActivity"
android:label="@string/pump_alert"
android:excludeFromRecents="true"
android:launchMode="singleInstance"
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-04-24 12:00:31 +02: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"
android:exported="true" />
2019-07-30 18:49:56 +02:00
2019-03-02 21:39:14 +01:00
<activity android:name=".plugins.pump.common.dialog.RileyLinkBLEScanActivity">
2019-02-16 21:50:36 +01:00
<intent-filter>
<action android:name="info.nightscout.androidaps.plugins.PumpCommon.dialog.RileyLinkBLEScanActivity" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity
2019-03-02 21:39:14 +01:00
android:name=".plugins.pump.common.hw.rileylink.dialog.RileyLinkStatusActivity"
android:label="@string/title_activity_rileylink_settings"
android:theme="@style/Theme.AppCompat.NoTitle" />
2019-03-02 21:39:14 +01:00
<activity android:name=".plugins.pump.medtronic.dialog.MedtronicHistoryActivity" />
2019-07-30 18:49:56 +02:00
<uses-library
android:name="org.apache.http.legacy"
android:required="false" />
2019-05-15 23:26:07 +02:00
2016-06-04 17:28:05 +02:00
</application>
2019-03-22 23:08:13 +01:00
</manifest>