2015-01-07 14:00:18 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2020-07-19 23:58:21 +02:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2015-06-24 00:23:38 +02:00
|
|
|
package="nodomain.freeyourgadget.gadgetbridge">
|
2020-07-19 23:58:21 +02:00
|
|
|
|
2015-12-15 00:26:06 +01:00
|
|
|
<!--
|
|
|
|
Comment in for testing Pebble Emulator
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
-->
|
2020-07-19 23:58:21 +02:00
|
|
|
<!-- Used for Bluetooth access -->
|
2023-07-02 18:55:52 +02:00
|
|
|
<!-- Request legacy Bluetooth permissions on older devices. -->
|
|
|
|
<uses-permission android:name="android.permission.BLUETOOTH"
|
|
|
|
android:maxSdkVersion="30"/>
|
|
|
|
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN"
|
|
|
|
android:maxSdkVersion="30"/>
|
|
|
|
<!-- Needed to looks for Bluetooth devices. -->
|
|
|
|
<uses-permission android:name="android.permission.BLUETOOTH_SCAN" />
|
|
|
|
<!-- Needed to communicate with already-paired Bluetooth devices. -->
|
|
|
|
<uses-permission android:name="android.permission.BLUETOOTH_CONNECT" />
|
2020-07-19 23:58:21 +02:00
|
|
|
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
|
|
|
|
|
|
|
|
<!-- Since Android 10 -->
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_BACKGROUND_LOCATION" />
|
|
|
|
|
2018-09-05 20:41:01 +02:00
|
|
|
<uses-permission android:name="android.permission.READ_CALL_LOG" />
|
2015-01-22 22:49:50 +01:00
|
|
|
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
|
2015-02-07 12:58:18 +01:00
|
|
|
<uses-permission android:name="android.permission.PROCESS_OUTGOING_CALLS" />
|
2020-07-27 18:15:33 +02:00
|
|
|
<uses-permission android:name="android.permission.ACCESS_NOTIFICATION_POLICY" />
|
2015-03-07 17:44:39 +01:00
|
|
|
<uses-permission android:name="android.permission.CALL_PHONE" />
|
2020-02-21 21:57:18 +01:00
|
|
|
<uses-permission android:name="android.permission.ANSWER_PHONE_CALLS" />
|
2015-02-07 12:58:18 +01:00
|
|
|
<uses-permission android:name="android.permission.RECEIVE_SMS" />
|
2015-12-15 00:26:06 +01:00
|
|
|
<uses-permission android:name="android.permission.SEND_SMS" />
|
2015-01-23 11:32:58 +01:00
|
|
|
<uses-permission android:name="android.permission.READ_CONTACTS" />
|
2020-07-19 23:58:21 +02:00
|
|
|
|
2023-07-04 00:19:19 +02:00
|
|
|
<!-- Read loyalty cards from Catima -->
|
|
|
|
<uses-permission android:name="me.hackerchick.catima.READ_CARDS"/>
|
2023-07-09 15:29:30 +02:00
|
|
|
<uses-permission android:name="me.hackerchick.catima.debug.READ_CARDS"/>
|
2023-07-04 00:19:19 +02:00
|
|
|
|
2019-12-14 18:19:51 +01:00
|
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
2015-12-23 22:01:26 +01:00
|
|
|
<uses-permission android:name="android.permission.READ_CALENDAR" />
|
2020-07-19 23:58:21 +02:00
|
|
|
<uses-permission
|
|
|
|
android:name="android.permission.MEDIA_CONTENT_CONTROL"
|
|
|
|
tools:ignore="ProtectedPermissions" />
|
|
|
|
|
|
|
|
<!-- Used for background service -->
|
2017-02-17 23:11:44 +01:00
|
|
|
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
|
2019-02-11 01:45:10 +01:00
|
|
|
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
|
2020-07-19 23:58:21 +02:00
|
|
|
<uses-permission android:name="android.permission.REQUEST_COMPANION_RUN_IN_BACKGROUND" />
|
|
|
|
|
|
|
|
<!-- Used for reverse find device -->
|
|
|
|
<uses-permission android:name="android.permission.VIBRATE" />
|
|
|
|
|
|
|
|
<!-- Used for weather provider access -->
|
2017-12-11 19:09:37 +01:00
|
|
|
<uses-permission android:name="cyanogenmod.permission.ACCESS_WEATHER_MANAGER" />
|
|
|
|
<uses-permission android:name="cyanogenmod.permission.READ_WEATHER" />
|
2019-08-22 17:57:26 +02:00
|
|
|
<uses-permission android:name="lineageos.permission.ACCESS_WEATHER_MANAGER" />
|
|
|
|
<uses-permission android:name="lineageos.permission.READ_WEATHER" />
|
2017-12-17 22:35:17 +01:00
|
|
|
<uses-permission android:name="org.omnirom.omnijaws.READ_WEATHER" />
|
2017-12-11 19:09:37 +01:00
|
|
|
|
2022-07-19 14:04:29 +02:00
|
|
|
<!-- Used for starting activities from the background with intents -->
|
|
|
|
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" />
|
|
|
|
|
2023-07-02 18:55:52 +02:00
|
|
|
<!--
|
|
|
|
SDK 30 & Android 11 - Used for getting app name from notifications, and for starting
|
|
|
|
services from other packages via intents, when targeting Android API level 30 or later
|
|
|
|
(e.g. Bangle.js build variant) on devices running Android 11 or later.
|
|
|
|
https://developer.android.com/training/package-visibility
|
|
|
|
https://support.google.com/googleplay/android-developer/answer/10158779?hl=en#zippy=%2Cpermitted-uses-of-the-query-all-packages-permission%2Cexceptions
|
|
|
|
-->
|
|
|
|
<uses-permission android:name="android.permission.QUERY_ALL_PACKAGES"
|
|
|
|
tools:ignore="QueryAllPackagesPermission" />
|
|
|
|
|
2015-06-23 23:03:05 +02:00
|
|
|
<uses-feature
|
|
|
|
android:name="android.hardware.bluetooth"
|
|
|
|
android:required="true" />
|
|
|
|
<uses-feature
|
|
|
|
android:name="android.hardware.bluetooth_le"
|
|
|
|
android:required="false" />
|
2015-08-22 22:52:29 +02:00
|
|
|
<uses-feature
|
|
|
|
android:name="android.hardware.telephony"
|
|
|
|
android:required="false" />
|
2020-07-19 23:58:21 +02:00
|
|
|
<uses-feature
|
|
|
|
android:name="android.software.companion_device_setup"
|
|
|
|
android:required="false" />
|
2015-08-22 22:52:29 +02:00
|
|
|
|
2015-01-07 14:00:18 +01:00
|
|
|
<application
|
2015-05-05 00:48:02 +02:00
|
|
|
android:name=".GBApplication"
|
2015-10-11 03:52:01 +02:00
|
|
|
android:allowBackup="false"
|
|
|
|
android:fullBackupContent="false"
|
2018-02-19 21:39:48 +01:00
|
|
|
android:icon="@mipmap/ic_launcher"
|
2015-01-07 14:00:18 +01:00
|
|
|
android:label="@string/app_name"
|
2020-01-19 04:01:57 +01:00
|
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
2021-03-13 22:32:58 +01:00
|
|
|
android:requestLegacyExternalStorage="true"
|
2022-04-02 16:49:09 +02:00
|
|
|
android:theme="@style/GadgetbridgeTheme"
|
|
|
|
tools:replace="android:label">
|
2015-01-07 14:00:18 +01:00
|
|
|
<activity
|
2017-03-11 19:49:57 +01:00
|
|
|
android:name=".activities.ControlCenterv2"
|
|
|
|
android:label="@string/title_activity_controlcenter"
|
2021-03-06 20:42:16 +01:00
|
|
|
android:theme="@style/SplashTheme"
|
2022-10-09 14:53:04 +02:00
|
|
|
android:launchMode="singleTop"
|
|
|
|
android:exported="true">
|
2015-01-07 14:00:18 +01:00
|
|
|
<intent-filter>
|
2017-03-11 19:49:57 +01:00
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
2020-01-19 04:01:57 +01:00
|
|
|
|
2015-01-07 14:00:18 +01:00
|
|
|
<action android:name="android.intent.action.MAIN" />
|
2020-01-19 04:01:57 +01:00
|
|
|
|
2015-01-07 14:00:18 +01:00
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2015-03-25 22:23:45 +01:00
|
|
|
<activity
|
2015-08-03 23:09:49 +02:00
|
|
|
android:name=".activities.SettingsActivity"
|
2015-12-07 01:26:58 +01:00
|
|
|
android:label="@string/title_activity_settings"
|
2017-03-11 19:49:57 +01:00
|
|
|
android:parentActivityName=".activities.ControlCenterv2" />
|
2020-11-14 10:06:55 +01:00
|
|
|
<activity
|
|
|
|
android:name=".activities.AboutUserPreferencesActivity"
|
|
|
|
android:label="@string/activity_prefs_about_you"
|
|
|
|
android:parentActivityName=".activities.AboutUserPreferencesActivity" />
|
2019-09-08 16:11:18 +02:00
|
|
|
<activity
|
|
|
|
android:name=".activities.charts.ChartsPreferencesActivity"
|
|
|
|
android:label="@string/activity_prefs_charts"
|
|
|
|
android:parentActivityName=".activities.charts.ChartsPreferencesActivity" />
|
2021-12-23 18:56:36 +01:00
|
|
|
<activity
|
|
|
|
android:name=".activities.DiscoveryPairingPreferenceActivity"
|
|
|
|
android:label="@string/activity_prefs_discovery_pairing"
|
|
|
|
android:parentActivityName=".activities.SettingsActivity" />
|
2015-05-07 01:30:40 +02:00
|
|
|
<activity
|
2015-08-03 23:09:49 +02:00
|
|
|
android:name=".devices.miband.MiBandPreferencesActivity"
|
2015-12-07 01:26:58 +01:00
|
|
|
android:label="@string/preferences_miband_settings"
|
2016-02-29 21:36:39 +01:00
|
|
|
android:parentActivityName=".activities.SettingsActivity" />
|
2023-07-04 00:19:19 +02:00
|
|
|
<activity
|
|
|
|
android:name=".activities.loyaltycards.LoyaltyCardsSettingsActivity"
|
|
|
|
android:label="@string/loyalty_cards"
|
|
|
|
android:parentActivityName=".activities.devicesettings.DeviceSettingsActivity" />
|
2018-09-13 14:55:38 +02:00
|
|
|
<activity
|
|
|
|
android:name=".devices.zetime.ZeTimePreferenceActivity"
|
|
|
|
android:label="@string/zetime_title_settings"
|
|
|
|
android:parentActivityName=".activities.SettingsActivity" />
|
2017-10-19 21:52:38 +02:00
|
|
|
<activity
|
|
|
|
android:name=".activities.ActivitySummariesActivity"
|
|
|
|
android:label="@string/activity_summaries"
|
|
|
|
android:parentActivityName=".activities.ControlCenterv2" />
|
2015-03-25 22:23:45 +01:00
|
|
|
<activity
|
2016-06-14 15:56:38 +02:00
|
|
|
android:name=".activities.appmanager.AppManagerActivity"
|
2015-12-07 01:26:58 +01:00
|
|
|
android:label="@string/title_activity_appmanager"
|
2020-01-19 04:01:57 +01:00
|
|
|
android:launchMode="singleTop"
|
2017-03-11 19:49:57 +01:00
|
|
|
android:parentActivityName=".activities.ControlCenterv2" />
|
2015-09-10 13:48:54 +02:00
|
|
|
<activity
|
|
|
|
android:name=".activities.AppBlacklistActivity"
|
2021-09-26 21:59:11 +02:00
|
|
|
android:label="@string/title_activity_notification_management"
|
2016-02-29 21:36:39 +01:00
|
|
|
android:parentActivityName=".activities.SettingsActivity" />
|
2017-08-18 10:30:19 +02:00
|
|
|
<activity
|
|
|
|
android:name=".activities.CalBlacklistActivity"
|
|
|
|
android:label="@string/title_activity_calblacklist"
|
|
|
|
android:parentActivityName=".activities.SettingsActivity" />
|
2021-12-27 15:47:10 +01:00
|
|
|
<activity
|
|
|
|
android:name=".devices.vesc.VescControlActivity"
|
|
|
|
android:label="@string/devicetype_vesc"
|
|
|
|
android:parentActivityName=".activities.ControlCenterv2" />
|
2015-03-28 23:23:10 +01:00
|
|
|
<activity
|
2015-07-28 17:30:20 +02:00
|
|
|
android:name=".activities.FwAppInstallerActivity"
|
2015-12-07 01:11:07 +01:00
|
|
|
android:label="@string/title_activity_fw_app_insaller"
|
2022-10-09 14:53:04 +02:00
|
|
|
android:parentActivityName=".activities.ControlCenterv2"
|
|
|
|
android:exported="true">
|
2015-03-28 23:23:10 +01:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
2016-02-29 21:36:39 +01:00
|
|
|
|
2015-07-28 17:30:20 +02:00
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
|
2015-08-29 00:12:51 +02:00
|
|
|
<data android:mimeType="*/*" />
|
|
|
|
<!-- needed for aosp-derived ROMs? -->
|
2015-07-28 17:30:20 +02:00
|
|
|
|
|
|
|
<data android:host="*" />
|
|
|
|
<data android:scheme="file" />
|
2015-05-05 00:48:02 +02:00
|
|
|
|
2015-07-28 17:30:20 +02:00
|
|
|
<!-- as seen on openkeychain repo: https://github.com/open-keychain/open-keychain/blob/master/OpenKeychain/src/main/AndroidManifest.xml -->
|
|
|
|
|
2015-08-29 00:12:51 +02:00
|
|
|
<data android:pathPattern="/.*\\.fw" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\.fw" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\.fw" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\.fw" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\..*\\.fw" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\..*\\..*\\.fw" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\..*\\..*\\..*\\.fw" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\..*\\..*\\..*\\..*\\.fw" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\..*\\..*\\..*\\..*\\..*\\.fw" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\..*\\..*\\..*\\..*\\..*\\..*\\.fw" />
|
2017-03-07 23:20:59 +01:00
|
|
|
<data android:pathPattern="/.*\\.ft.en" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\.ft.en" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\.ft.en" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\.ft.en" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\..*\\.ft.en" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\..*\\..*\\.ft.en" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\..*\\..*\\..*\\.ft.en" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\..*\\..*\\..*\\..*\\.ft.en" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\..*\\..*\\..*\\..*\\..*\\.ft.en" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\..*\\..*\\..*\\..*\\..*\\..*\\.ft.en" />
|
|
|
|
<data android:pathPattern="/.*\\.ft" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\.ft" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\.ft" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\.ft" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\..*\\.ft" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\..*\\..*\\.ft" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\..*\\..*\\..*\\.ft" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\..*\\..*\\..*\\..*\\.ft" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\..*\\..*\\..*\\..*\\..*\\.ft" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\..*\\..*\\..*\\..*\\..*\\..*\\.ft" />
|
2017-08-25 00:44:26 +02:00
|
|
|
<data android:pathPattern="/.*\\.res" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\.res" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\.res" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\.res" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\..*\\.res" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\..*\\..*\\.res" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\..*\\..*\\..*\\.res" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\..*\\..*\\..*\\..*\\.res" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\..*\\..*\\..*\\..*\\..*\\.res" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\..*\\..*\\..*\\..*\\..*\\..*\\.res" />
|
|
|
|
<data android:pathPattern="/.*\\.gps" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\.gps" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\.gps" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\.gps" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\..*\\.gps" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\..*\\..*\\.gps" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\..*\\..*\\..*\\.gps" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\..*\\..*\\..*\\..*\\.gps" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\..*\\..*\\..*\\..*\\..*\\.gps" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\..*\\..*\\..*\\..*\\..*\\..*\\.gps" />
|
2015-08-29 00:12:51 +02:00
|
|
|
<data android:pathPattern="/.*\\.pbw" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\.pbw" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\.pbw" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\.pbw" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\..*\\.pbw" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\..*\\..*\\.pbw" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\..*\\..*\\..*\\.pbw" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\..*\\..*\\..*\\..*\\.pbw" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\..*\\..*\\..*\\..*\\..*\\.pbw" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\..*\\..*\\..*\\..*\\..*\\..*\\.pbw" />
|
|
|
|
<data android:pathPattern="/.*\\.pbz" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\.pbz" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\.pbz" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\.pbz" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\..*\\.pbz" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\..*\\..*\\.pbz" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\..*\\..*\\..*\\.pbz" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\..*\\..*\\..*\\..*\\.pbz" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\..*\\..*\\..*\\..*\\..*\\.pbz" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\..*\\..*\\..*\\..*\\..*\\..*\\.pbz" />
|
2015-10-06 16:56:01 +02:00
|
|
|
<data android:pathPattern="/.*\\.pbl" />
|
2015-10-11 13:51:24 +02:00
|
|
|
<data android:pathPattern="/.*\\..*\\.pbl" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\.pbl" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\.pbl" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\..*\\.pbl" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\..*\\..*\\.pbl" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\..*\\..*\\..*\\.pbl" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\..*\\..*\\..*\\..*\\.pbl" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\..*\\..*\\..*\\..*\\..*\\.pbl" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\..*\\..*\\..*\\..*\\..*\\..*\\.pbl" />
|
2015-07-28 17:30:20 +02:00
|
|
|
</intent-filter>
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
2016-02-29 21:36:39 +01:00
|
|
|
|
2015-03-28 23:23:10 +01:00
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
|
2015-07-30 17:14:44 +02:00
|
|
|
<!-- no mimeType filter, needed for CM-derived ROMs? -->
|
|
|
|
|
2015-03-28 23:23:10 +01:00
|
|
|
<data android:host="*" />
|
|
|
|
<data android:scheme="file" />
|
2015-07-28 17:30:20 +02:00
|
|
|
|
|
|
|
<!-- as seen on openkeychain repo: https://github.com/open-keychain/open-keychain/blob/master/OpenKeychain/src/main/AndroidManifest.xml -->
|
|
|
|
|
2015-08-29 00:12:51 +02:00
|
|
|
<data android:pathPattern="/.*\\.fw" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\.fw" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\.fw" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\.fw" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\..*\\.fw" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\..*\\..*\\.fw" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\..*\\..*\\..*\\.fw" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\..*\\..*\\..*\\..*\\.fw" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\..*\\..*\\..*\\..*\\..*\\.fw" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\..*\\..*\\..*\\..*\\..*\\..*\\.fw" />
|
2017-03-07 23:20:59 +01:00
|
|
|
<data android:pathPattern="/.*\\.ft.en" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\.ft.en" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\.ft.en" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\.ft.en" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\..*\\.ft.en" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\..*\\..*\\.ft.en" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\..*\\..*\\..*\\.ft.en" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\..*\\..*\\..*\\..*\\.ft.en" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\..*\\..*\\..*\\..*\\..*\\.ft.en" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\..*\\..*\\..*\\..*\\..*\\..*\\.ft.en" />
|
|
|
|
<data android:pathPattern="/.*\\.ft" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\.ft" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\.ft" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\.ft" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\..*\\.ft" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\..*\\..*\\.ft" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\..*\\..*\\..*\\.ft" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\..*\\..*\\..*\\..*\\.ft" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\..*\\..*\\..*\\..*\\..*\\.ft" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\..*\\..*\\..*\\..*\\..*\\..*\\.ft" />
|
2017-08-25 00:44:26 +02:00
|
|
|
<data android:pathPattern="/.*\\.res" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\.res" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\.res" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\.res" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\..*\\.res" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\..*\\..*\\.res" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\..*\\..*\\..*\\.res" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\..*\\..*\\..*\\..*\\.res" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\..*\\..*\\..*\\..*\\..*\\.res" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\..*\\..*\\..*\\..*\\..*\\..*\\.res" />
|
|
|
|
<data android:pathPattern="/.*\\.gps" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\.gps" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\.gps" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\.gps" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\..*\\.gps" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\..*\\..*\\.gps" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\..*\\..*\\..*\\.gps" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\..*\\..*\\..*\\..*\\.gps" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\..*\\..*\\..*\\..*\\..*\\.gps" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\..*\\..*\\..*\\..*\\..*\\..*\\.gps" />
|
2015-08-29 00:12:51 +02:00
|
|
|
<data android:pathPattern="/.*\\.pbw" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\.pbw" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\.pbw" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\.pbw" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\..*\\.pbw" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\..*\\..*\\.pbw" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\..*\\..*\\..*\\.pbw" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\..*\\..*\\..*\\..*\\.pbw" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\..*\\..*\\..*\\..*\\..*\\.pbw" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\..*\\..*\\..*\\..*\\..*\\..*\\.pbw" />
|
|
|
|
<data android:pathPattern="/.*\\.pbz" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\.pbz" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\.pbz" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\.pbz" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\..*\\.pbz" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\..*\\..*\\.pbz" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\..*\\..*\\..*\\.pbz" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\..*\\..*\\..*\\..*\\.pbz" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\..*\\..*\\..*\\..*\\..*\\.pbz" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\..*\\..*\\..*\\..*\\..*\\..*\\.pbz" />
|
2015-10-06 16:56:01 +02:00
|
|
|
<data android:pathPattern="/.*\\.pbl" />
|
2015-10-11 13:51:24 +02:00
|
|
|
<data android:pathPattern="/.*\\..*\\.pbl" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\.pbl" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\.pbl" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\..*\\.pbl" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\..*\\..*\\.pbl" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\..*\\..*\\..*\\.pbl" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\..*\\..*\\..*\\..*\\.pbl" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\..*\\..*\\..*\\..*\\..*\\.pbl" />
|
|
|
|
<data android:pathPattern="/.*\\..*\\..*\\..*\\..*\\..*\\..*\\..*\\..*\\..*\\.pbl" />
|
2015-03-28 23:23:10 +01:00
|
|
|
</intent-filter>
|
2015-09-17 16:17:39 +02:00
|
|
|
|
2016-12-01 20:18:36 +01:00
|
|
|
<!-- to receive the firmwares from the download content provider -->
|
2015-09-17 16:17:39 +02:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
2016-02-29 21:36:39 +01:00
|
|
|
|
2015-09-17 16:17:39 +02:00
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
2016-02-29 21:36:39 +01:00
|
|
|
|
2015-09-17 16:17:39 +02:00
|
|
|
<data android:mimeType="application/octet-stream" />
|
|
|
|
</intent-filter>
|
2020-07-19 23:58:21 +02:00
|
|
|
|
2020-01-19 04:01:57 +01:00
|
|
|
<!-- to receive firmwares from the download content provider if recognized as zip -->
|
2016-10-29 16:27:31 +02:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
|
|
|
|
<data android:mimeType="application/zip" />
|
|
|
|
<data android:mimeType="application/x-zip-compressed" />
|
|
|
|
</intent-filter>
|
2020-07-19 23:58:21 +02:00
|
|
|
|
2016-12-27 12:20:59 +01:00
|
|
|
<!-- to receive files from the "share" intent -->
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.SEND" />
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
|
|
|
|
<data android:mimeType="*/*" />
|
|
|
|
</intent-filter>
|
2015-03-28 23:23:10 +01:00
|
|
|
</activity>
|
2015-08-29 00:12:51 +02:00
|
|
|
|
2015-01-07 14:00:18 +01:00
|
|
|
<service
|
2015-04-20 22:39:35 +02:00
|
|
|
android:name=".externalevents.NotificationListener"
|
2015-01-07 14:00:18 +01:00
|
|
|
android:label="@string/app_name"
|
2022-10-09 14:53:04 +02:00
|
|
|
android:permission="android.permission.BIND_NOTIFICATION_LISTENER_SERVICE"
|
|
|
|
android:exported="false">
|
2015-01-07 14:00:18 +01:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.service.notification.NotificationListenerService" />
|
|
|
|
</intent-filter>
|
|
|
|
</service>
|
2017-04-19 13:23:13 +02:00
|
|
|
<service android:name=".service.NotificationCollectorMonitorService" />
|
2015-08-04 01:01:14 +02:00
|
|
|
<service android:name=".service.DeviceCommunicationService" />
|
2020-10-04 15:02:04 +02:00
|
|
|
<service
|
|
|
|
android:name=".devices.pinetime.PineTimeDFUService"
|
|
|
|
android:label="PineTime Nordic DFU service" />
|
2015-12-15 00:26:06 +01:00
|
|
|
|
2022-08-22 02:30:13 +02:00
|
|
|
<receiver
|
|
|
|
android:name=".externalevents.GenericWeatherReceiver"
|
2022-10-09 14:53:04 +02:00
|
|
|
android:enabled="true"
|
|
|
|
android:exported="false">
|
2022-08-22 02:30:13 +02:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="nodomain.freeyourgadget.gadgetbridge.ACTION_GENERIC_WEATHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
|
|
|
|
2015-12-27 19:44:33 +01:00
|
|
|
<receiver
|
|
|
|
android:name=".externalevents.WeatherNotificationReceiver"
|
2022-10-09 14:53:04 +02:00
|
|
|
android:enabled="true"
|
2023-07-07 10:03:35 +02:00
|
|
|
android:exported="true">
|
2015-12-27 19:44:33 +01:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="ru.gelin.android.weather.notification.ACTION_WEATHER_UPDATE_2" />
|
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
2015-12-28 17:46:16 +01:00
|
|
|
|
2022-10-09 14:53:04 +02:00
|
|
|
<activity android:name=".externalevents.WeatherNotificationConfig"
|
2023-07-07 10:03:35 +02:00
|
|
|
android:exported="true">
|
2015-12-28 17:46:16 +01:00
|
|
|
<intent-filter>
|
2020-01-19 04:01:57 +01:00
|
|
|
<action android:name="ru.gelin.android.weather.notification.ACTION_WEATHER_SKIN_PREFERENCES" />
|
2015-12-28 17:46:16 +01:00
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
|
2020-01-19 04:01:57 +01:00
|
|
|
<receiver
|
|
|
|
android:name=".externalevents.AutoStartReceiver"
|
2022-10-09 14:53:04 +02:00
|
|
|
android:permission="android.permission.RECEIVE_BOOT_COMPLETED"
|
|
|
|
android:exported="false">
|
2017-02-17 23:11:44 +01:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.BOOT_COMPLETED" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
2022-10-13 20:51:08 +02:00
|
|
|
<action android:name="android.intent.action.MY_PACKAGE_REPLACED"/>
|
2017-02-17 23:11:44 +01:00
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
2020-07-19 23:58:21 +02:00
|
|
|
|
2015-12-15 00:26:06 +01:00
|
|
|
<receiver
|
2015-05-30 21:40:42 +02:00
|
|
|
android:name=".externalevents.BluetoothStateChangeReceiver"
|
2021-07-14 11:04:03 +02:00
|
|
|
android:exported="true"
|
|
|
|
android:permission="android.permission.BLUETOOTH,android.permission.BLUETOOTH_ADMIN">
|
2015-03-17 21:41:58 +01:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.bluetooth.adapter.action.STATE_CHANGED" />
|
2020-07-19 23:58:21 +02:00
|
|
|
<action android:name="android.bluetooth.adapter.action.CONNECTION_STATE_CHANGED" />
|
|
|
|
|
|
|
|
<action android:name="android.bluetooth.device.action.ACL_CONNECTED" />
|
|
|
|
<action android:name="android.bluetooth.device.action.ACL_DISCONNECTED" />
|
|
|
|
<action android:name="android.bluetooth.device.action.ACL_DISCONNECT_REQUESTED" />
|
2015-03-17 21:41:58 +01:00
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
2020-07-19 23:58:21 +02:00
|
|
|
|
2015-03-27 12:13:19 +01:00
|
|
|
<receiver
|
2015-08-03 23:09:49 +02:00
|
|
|
android:name=".service.receivers.GBMusicControlReceiver"
|
2015-06-24 00:23:38 +02:00
|
|
|
android:exported="false">
|
2015-02-12 16:00:45 +01:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="nodomain.freeyourgadget.gadgetbridge.musiccontrol" />
|
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
2015-03-27 12:13:19 +01:00
|
|
|
<receiver
|
2015-08-03 23:09:49 +02:00
|
|
|
android:name=".service.receivers.GBCallControlReceiver"
|
2015-06-24 00:23:38 +02:00
|
|
|
android:exported="false">
|
2015-03-07 17:44:39 +01:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="nodomain.freeyourgadget.gadgetbridge.callcontrol" />
|
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
2018-01-04 15:13:06 +01:00
|
|
|
<receiver
|
2020-01-19 04:01:57 +01:00
|
|
|
android:name=".database.PeriodicExporter"
|
2018-01-04 15:13:06 +01:00
|
|
|
android:enabled="true"
|
2020-07-19 23:58:21 +02:00
|
|
|
android:exported="false" />
|
2016-06-19 00:53:53 +02:00
|
|
|
<!--
|
|
|
|
forcing the DebugActivity to portrait mode avoids crashes with the progress
|
|
|
|
dialog when changing orientation
|
2020-01-19 04:01:57 +01:00
|
|
|
-->
|
2015-02-07 12:58:18 +01:00
|
|
|
<activity
|
2015-08-03 23:09:49 +02:00
|
|
|
android:name=".activities.DebugActivity"
|
2015-12-07 01:26:58 +01:00
|
|
|
android:label="@string/title_activity_debug"
|
2017-03-11 19:49:57 +01:00
|
|
|
android:parentActivityName=".activities.ControlCenterv2"
|
2016-08-31 15:12:26 +02:00
|
|
|
android:screenOrientation="portrait"
|
|
|
|
android:windowSoftInputMode="stateHidden" />
|
2020-07-11 17:04:29 +02:00
|
|
|
<activity
|
|
|
|
android:name=".activities.AboutActivity"
|
|
|
|
android:label="@string/about_activity_title"
|
|
|
|
android:parentActivityName=".activities.ControlCenterv2"
|
|
|
|
android:windowSoftInputMode="stateHidden" />
|
2022-07-06 23:09:36 +02:00
|
|
|
<activity
|
|
|
|
android:name=".activities.OpenFwAppInstallerActivity"
|
|
|
|
android:label="@string/open_fw_installer_info_text_title"
|
|
|
|
android:parentActivityName=".activities.ControlCenterv2"
|
|
|
|
android:windowSoftInputMode="stateHidden" />
|
2021-01-31 11:10:03 +01:00
|
|
|
<activity
|
|
|
|
android:name=".activities.BatteryInfoActivity"
|
|
|
|
android:label="@string/battery_detail_activity_title"
|
|
|
|
android:parentActivityName=".activities.ControlCenterv2" />
|
|
|
|
|
2020-08-07 09:21:14 +02:00
|
|
|
<activity
|
|
|
|
android:name=".activities.ActivitySummaryDetail"
|
2020-08-09 13:11:10 +02:00
|
|
|
android:label="@string/activity_summary_detail"
|
2020-08-15 14:45:43 +02:00
|
|
|
android:parentActivityName=".activities.ActivitySummariesActivity"
|
2020-08-07 09:21:14 +02:00
|
|
|
android:windowSoftInputMode="stateHidden" />
|
2020-08-18 11:16:36 +02:00
|
|
|
<activity
|
|
|
|
android:name=".activities.ActivitySummariesFilter"
|
2020-08-23 00:03:52 +02:00
|
|
|
android:label="@string/activity_filter_filter_title"
|
|
|
|
android:parentActivityName=".activities.ActivitySummariesActivity"
|
|
|
|
android:excludeFromRecents="true"/>
|
2020-07-11 17:04:29 +02:00
|
|
|
|
2016-08-31 15:12:26 +02:00
|
|
|
<activity
|
2021-01-02 16:57:41 +01:00
|
|
|
android:name=".activities.DataManagementActivity"
|
2016-08-31 15:12:26 +02:00
|
|
|
android:label="@string/title_activity_db_management"
|
2017-03-11 19:49:57 +01:00
|
|
|
android:parentActivityName=".activities.ControlCenterv2"
|
2016-02-29 21:36:39 +01:00
|
|
|
android:windowSoftInputMode="stateHidden" />
|
2021-09-26 21:59:11 +02:00
|
|
|
<activity
|
|
|
|
android:name=".activities.NotificationManagementActivity"
|
|
|
|
android:label="@string/title_activity_notification_management"
|
|
|
|
android:parentActivityName=".activities.ControlCenterv2"
|
|
|
|
android:windowSoftInputMode="stateHidden" />
|
2015-05-05 00:48:02 +02:00
|
|
|
<activity
|
2015-08-03 23:09:49 +02:00
|
|
|
android:name=".activities.DiscoveryActivity"
|
2015-12-07 01:26:58 +01:00
|
|
|
android:label="@string/title_activity_discovery"
|
2017-03-11 19:49:57 +01:00
|
|
|
android:parentActivityName=".activities.ControlCenterv2" />
|
2015-05-05 00:48:02 +02:00
|
|
|
<activity
|
|
|
|
android:name=".activities.AndroidPairingActivity"
|
2015-08-29 00:12:51 +02:00
|
|
|
android:label="@string/title_activity_android_pairing" />
|
2022-06-13 09:35:32 +02:00
|
|
|
<activity
|
|
|
|
android:name=".devices.banglejs.AppsManagementActivity"
|
|
|
|
android:label="@string/title_activity_appmanager"
|
|
|
|
android:launchMode="singleTop"
|
2023-06-22 20:25:09 +02:00
|
|
|
android:configChanges="keyboard|keyboardHidden|orientation|screenSize|layoutDirection|uiMode"
|
2022-06-13 09:35:32 +02:00
|
|
|
android:parentActivityName=".activities.ControlCenterv2" />
|
2015-05-05 00:48:02 +02:00
|
|
|
<activity
|
2015-08-03 23:09:49 +02:00
|
|
|
android:name=".devices.miband.MiBandPairingActivity"
|
2015-08-29 00:12:51 +02:00
|
|
|
android:label="@string/title_activity_mi_band_pairing" />
|
2016-11-19 22:13:00 +01:00
|
|
|
<activity
|
|
|
|
android:name=".devices.pebble.PebblePairingActivity"
|
|
|
|
android:label="@string/title_activity_pebble_pairing" />
|
2018-08-05 18:52:44 +02:00
|
|
|
<activity
|
|
|
|
android:name=".devices.watch9.Watch9PairingActivity"
|
2020-01-19 04:01:57 +01:00
|
|
|
android:label="@string/title_activity_watch9_pairing" />
|
2018-08-05 18:52:44 +02:00
|
|
|
<activity
|
|
|
|
android:name=".devices.watch9.Watch9CalibrationActivity"
|
2020-01-19 04:01:57 +01:00
|
|
|
android:label="@string/title_activity_watch9_calibration" />
|
2019-10-18 00:02:53 +02:00
|
|
|
<activity
|
2019-10-23 22:07:38 +02:00
|
|
|
android:name=".devices.lenovo.LenovoWatchPairingActivity"
|
2020-07-19 23:58:21 +02:00
|
|
|
android:label="@string/title_activity_watch9_pairing" />
|
2019-10-18 00:02:53 +02:00
|
|
|
<activity
|
2019-10-23 22:07:38 +02:00
|
|
|
android:name=".devices.lenovo.LenovoWatchCalibrationActivity"
|
2020-07-19 23:58:21 +02:00
|
|
|
android:label="@string/title_activity_LenovoWatch_calibration" />
|
2015-06-23 23:03:05 +02:00
|
|
|
<activity
|
2023-06-17 00:53:28 +02:00
|
|
|
android:name=".activities.charts.ActivityChartsActivity"
|
2015-06-23 23:03:05 +02:00
|
|
|
android:label="@string/title_activity_charts"
|
2017-03-11 19:49:57 +01:00
|
|
|
android:parentActivityName=".activities.ControlCenterv2" />
|
2015-06-24 20:14:08 +02:00
|
|
|
<activity
|
|
|
|
android:name=".activities.ConfigureAlarms"
|
|
|
|
android:label="@string/title_activity_set_alarm"
|
2019-04-21 21:18:08 +02:00
|
|
|
android:parentActivityName=".activities.ControlCenterv2" />
|
2021-12-04 16:55:09 +01:00
|
|
|
<activity
|
|
|
|
android:name=".activities.ConfigureReminders"
|
|
|
|
android:label="@string/title_activity_set_reminders"
|
|
|
|
android:parentActivityName=".activities.ControlCenterv2" />
|
2023-05-18 00:43:29 +02:00
|
|
|
<activity
|
|
|
|
android:name=".activities.ConfigureContacts"
|
|
|
|
android:label="@string/title_activity_set_contacts"
|
|
|
|
android:parentActivityName=".activities.ControlCenterv2" />
|
2022-05-09 20:47:08 +02:00
|
|
|
<activity
|
|
|
|
android:name=".activities.ConfigureWorldClocks"
|
|
|
|
android:label="@string/pref_world_clocks_title"
|
|
|
|
android:parentActivityName=".activities.ControlCenterv2" />
|
2019-04-21 21:18:08 +02:00
|
|
|
<activity
|
|
|
|
android:name=".activities.devicesettings.DeviceSettingsActivity"
|
2021-03-06 20:42:16 +01:00
|
|
|
android:label="@string/title_activity_device_specific_settings"
|
|
|
|
android:parentActivityName=".activities.ControlCenterv2" />
|
2015-06-24 20:14:08 +02:00
|
|
|
<activity
|
|
|
|
android:name=".activities.AlarmDetails"
|
|
|
|
android:label="@string/title_activity_alarm_details"
|
2018-12-03 09:45:43 +01:00
|
|
|
android:parentActivityName=".activities.ConfigureAlarms"
|
|
|
|
android:screenOrientation="portrait" />
|
2021-12-04 16:55:09 +01:00
|
|
|
<activity
|
|
|
|
android:name=".activities.ReminderDetails"
|
|
|
|
android:label="@string/title_activity_reminder_details"
|
|
|
|
android:parentActivityName=".activities.ConfigureReminders"
|
|
|
|
android:screenOrientation="portrait"
|
|
|
|
android:windowSoftInputMode="adjustResize" />
|
2023-05-18 00:43:29 +02:00
|
|
|
<activity
|
|
|
|
android:name=".activities.ContactDetails"
|
|
|
|
android:label="@string/title_activity_contact_details"
|
|
|
|
android:parentActivityName=".activities.ConfigureReminders"
|
|
|
|
android:screenOrientation="portrait"
|
|
|
|
android:windowSoftInputMode="adjustResize" />
|
2022-05-09 20:47:08 +02:00
|
|
|
<activity
|
|
|
|
android:name=".activities.WorldClockDetails"
|
|
|
|
android:label="@string/title_activity_world_clock_details"
|
|
|
|
android:parentActivityName=".activities.ConfigureWorldClocks"
|
|
|
|
android:screenOrientation="portrait"
|
|
|
|
android:windowSoftInputMode="adjustResize" />
|
2016-09-20 20:28:52 +02:00
|
|
|
<activity
|
|
|
|
android:name=".activities.VibrationActivity"
|
|
|
|
android:label="@string/title_activity_vibration"
|
2017-03-11 19:49:57 +01:00
|
|
|
android:parentActivityName=".activities.ControlCenterv2" />
|
2018-12-03 09:45:43 +01:00
|
|
|
<activity
|
|
|
|
android:name=".activities.NotificationFilterActivity"
|
|
|
|
android:label="@string/title_activity_notification_filter"
|
2020-01-19 04:01:57 +01:00
|
|
|
android:parentActivityName=".activities.AppBlacklistActivity"
|
|
|
|
android:windowSoftInputMode="stateHidden|adjustPan" />
|
2018-01-13 18:46:21 +01:00
|
|
|
<activity
|
|
|
|
android:name=".activities.FindPhoneActivity"
|
|
|
|
android:label="Find Phone" />
|
2016-02-29 21:36:39 +01:00
|
|
|
|
|
|
|
<provider
|
|
|
|
android:name=".contentprovider.PebbleContentProvider"
|
2022-01-27 18:00:22 +01:00
|
|
|
android:authorities="@string/pebble_content_provider"
|
2016-02-29 21:36:39 +01:00
|
|
|
android:exported="true" />
|
2020-07-19 23:58:21 +02:00
|
|
|
|
2017-03-10 23:10:40 +01:00
|
|
|
<provider
|
2019-01-26 15:52:40 +01:00
|
|
|
android:name="androidx.core.content.FileProvider"
|
2017-03-10 23:10:40 +01:00
|
|
|
android:authorities="${applicationId}.screenshot_provider"
|
|
|
|
android:exported="false"
|
|
|
|
android:grantUriPermissions="true">
|
|
|
|
<meta-data
|
|
|
|
android:name="android.support.FILE_PROVIDER_PATHS"
|
2017-10-19 21:52:38 +02:00
|
|
|
android:resource="@xml/shared_paths" />
|
2017-03-10 23:10:40 +01:00
|
|
|
</provider>
|
|
|
|
|
2020-01-19 04:01:57 +01:00
|
|
|
<receiver
|
|
|
|
android:name=".SleepAlarmWidget"
|
2022-10-09 14:53:04 +02:00
|
|
|
android:label="@string/appwidget_sleep_alarm_widget_label"
|
|
|
|
android:exported="false">
|
2016-02-29 21:36:39 +01:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
|
|
|
|
<action android:name="nodomain.freeyourgadget.gadgetbridge.SLEEP_ALARM_WIDGET_CLICK" />
|
|
|
|
</intent-filter>
|
|
|
|
|
|
|
|
<meta-data
|
|
|
|
android:name="android.appwidget.provider"
|
|
|
|
android:resource="@xml/sleep_alarm_widget_info" />
|
|
|
|
</receiver>
|
2019-08-13 19:54:18 +02:00
|
|
|
<receiver
|
|
|
|
android:name=".Widget"
|
2022-10-09 14:53:04 +02:00
|
|
|
android:label="@string/widget_listing_label"
|
|
|
|
android:exported="false">
|
2019-08-13 19:54:18 +02:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
|
2020-12-07 22:13:49 +01:00
|
|
|
<action android:name="android.appwidget.action.APPWIDGET_DELETED" />
|
|
|
|
<action android:name="android.appwidget.action.APPWIDGET_DISABLED" />
|
2019-08-13 19:54:18 +02:00
|
|
|
<action android:name="nodomain.freeyourgadget.gadgetbridge.WidgetClick" />
|
2020-01-19 04:01:57 +01:00
|
|
|
</intent-filter>
|
2019-08-13 19:54:18 +02:00
|
|
|
|
|
|
|
<meta-data
|
|
|
|
android:name="android.appwidget.provider"
|
|
|
|
android:resource="@xml/widget_info" />
|
|
|
|
</receiver>
|
|
|
|
|
|
|
|
<activity
|
|
|
|
android:name=".activities.WidgetAlarmsActivity"
|
2020-01-19 04:01:57 +01:00
|
|
|
android:excludeFromRecents="true"
|
2019-08-13 19:54:18 +02:00
|
|
|
android:launchMode="singleInstance"
|
2020-01-19 04:01:57 +01:00
|
|
|
android:theme="@style/Theme.AppCompat.Light.Dialog" />
|
2020-12-07 22:13:49 +01:00
|
|
|
|
2022-10-09 14:53:04 +02:00
|
|
|
<activity android:name=".activities.WidgetConfigurationActivity"
|
|
|
|
android:exported="false">
|
2020-12-07 22:13:49 +01:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.appwidget.action.APPWIDGET_CONFIGURE"/>
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
|
2022-10-09 14:53:04 +02:00
|
|
|
<activity android:name=".activities.SleepAlarmWidgetConfigurationActivity"
|
|
|
|
android:exported="false">
|
2022-05-28 14:57:01 +02:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.appwidget.action.APPWIDGET_CONFIGURE"/>
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
|
2016-02-28 22:25:21 +01:00
|
|
|
<activity
|
2020-01-19 04:01:57 +01:00
|
|
|
android:name=".activities.ExternalPebbleJSActivity"
|
2016-06-18 21:08:51 +02:00
|
|
|
android:allowTaskReparenting="true"
|
|
|
|
android:clearTaskOnLaunch="true"
|
2016-03-21 21:19:32 +01:00
|
|
|
android:label="@string/app_configure"
|
2020-01-19 04:01:57 +01:00
|
|
|
android:launchMode="singleTask"
|
2022-10-09 14:53:04 +02:00
|
|
|
android:parentActivityName=".activities.appmanager.AppManagerActivity"
|
|
|
|
android:exported="true">
|
2016-02-28 22:25:21 +01:00
|
|
|
<meta-data
|
|
|
|
android:name="android.support.PARENT_ACTIVITY"
|
2017-03-11 19:49:57 +01:00
|
|
|
android:value="nodomain.freeyourgadget.gadgetbridge.activities.ControlCenterv2" />
|
2020-01-19 04:01:57 +01:00
|
|
|
|
2016-02-28 22:25:21 +01:00
|
|
|
<intent-filter>
|
2020-01-19 04:01:57 +01:00
|
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
|
|
|
2016-02-28 22:25:21 +01:00
|
|
|
<data android:scheme="gadgetbridge" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2020-07-19 23:58:21 +02:00
|
|
|
|
2019-07-14 19:45:40 +02:00
|
|
|
<activity
|
|
|
|
android:name=".devices.qhybrid.ConfigActivity"
|
2021-05-29 16:42:32 +02:00
|
|
|
android:label="@string/qhybrid_title_watchface"
|
2021-03-06 20:42:16 +01:00
|
|
|
android:exported="true"
|
|
|
|
android:parentActivityName=".activities.ControlCenterv2" />
|
2019-07-14 19:45:40 +02:00
|
|
|
<activity
|
|
|
|
android:name=".devices.qhybrid.QHybridAppChoserActivity"
|
2021-03-06 20:42:16 +01:00
|
|
|
android:label="@string/qhybrid_title_apps"
|
|
|
|
android:exported="true"
|
|
|
|
android:parentActivityName=".devices.qhybrid.ConfigActivity" />
|
2019-12-31 03:14:20 +01:00
|
|
|
<activity
|
|
|
|
android:name=".devices.qhybrid.HRConfigActivity"
|
2021-05-29 16:42:32 +02:00
|
|
|
android:label="@string/qhybrid_title_watchface"
|
2021-03-06 20:42:16 +01:00
|
|
|
android:exported="true"
|
|
|
|
android:parentActivityName=".activities.ControlCenterv2" />
|
|
|
|
<activity android:name=".devices.qhybrid.WidgetSettingsActivity"
|
|
|
|
android:label="@string/add_widget"
|
|
|
|
android:parentActivityName=".devices.qhybrid.HRConfigActivity" />
|
2020-04-08 02:12:14 +02:00
|
|
|
<activity
|
|
|
|
android:name=".devices.qhybrid.ImageEditActivity"
|
2021-03-06 20:42:16 +01:00
|
|
|
android:label="@string/qhybrid_title_background_image"
|
|
|
|
android:exported="true"
|
|
|
|
android:parentActivityName=".devices.qhybrid.HRConfigActivity" />
|
2020-10-16 01:50:44 +02:00
|
|
|
<activity
|
|
|
|
android:name=".devices.qhybrid.FileManagementActivity"
|
2021-03-06 20:42:16 +01:00
|
|
|
android:label="@string/qhybrid_title_file_management"
|
|
|
|
android:exported="true"
|
|
|
|
android:parentActivityName=".devices.qhybrid.HRConfigActivity"/>
|
2021-02-01 01:57:04 +01:00
|
|
|
<activity
|
|
|
|
android:name=".devices.qhybrid.AppsManagementActivity"
|
2021-03-06 20:42:16 +01:00
|
|
|
android:label="@string/qhybrid_title_apps_management"
|
|
|
|
android:exported="true"
|
|
|
|
android:parentActivityName=".devices.qhybrid.HRConfigActivity" />
|
|
|
|
<activity
|
|
|
|
android:name=".devices.qhybrid.CalibrationActivity"
|
2021-06-01 09:53:34 +02:00
|
|
|
android:label="@string/qhybrid_title_calibration"
|
2021-03-06 20:42:16 +01:00
|
|
|
android:parentActivityName=".devices.qhybrid.HRConfigActivity" />
|
2023-07-26 19:20:43 +02:00
|
|
|
<activity
|
|
|
|
android:name=".devices.withingssteelhr.WithingsCalibrationActivity"
|
|
|
|
android:label="@string/qhybrid_title_calibration"
|
|
|
|
android:parentActivityName=".devices.withingssteelhr.WithingsCalibrationActivity" />
|
2021-05-22 22:28:26 +02:00
|
|
|
<activity
|
|
|
|
android:name=".devices.qhybrid.CommuteActionsActivity"
|
2021-05-31 10:16:33 +02:00
|
|
|
android:label="@string/qhybrid_pref_title_actions"
|
2021-05-22 22:28:26 +02:00
|
|
|
android:parentActivityName=".devices.qhybrid.HRConfigActivity" />
|
2021-06-20 14:17:18 +02:00
|
|
|
<activity
|
|
|
|
android:name=".devices.qhybrid.HybridHRWatchfaceDesignerActivity"
|
2021-07-16 12:24:33 +02:00
|
|
|
android:label="@string/qhybrid_title_watchface_designer"
|
2021-07-19 09:35:21 +02:00
|
|
|
android:screenOrientation="portrait"
|
2021-11-16 14:25:58 +01:00
|
|
|
android:launchMode="singleTop"
|
2021-06-20 14:17:18 +02:00
|
|
|
android:parentActivityName=".activities.appmanager.AppManagerActivity" />
|
2021-11-16 14:25:58 +01:00
|
|
|
<activity
|
|
|
|
android:name=".devices.qhybrid.HybridHRWatchfaceSettingsActivity"
|
|
|
|
android:label="@string/watchface_dialog_title_settings"
|
|
|
|
android:parentActivityName=".devices.qhybrid.HybridHRWatchfaceDesignerActivity" />
|
2022-07-22 12:28:19 +02:00
|
|
|
<activity
|
|
|
|
android:name=".devices.qhybrid.HybridHRWatchfaceWidgetActivity"
|
|
|
|
android:label="@string/watchface_dialog_title_widget"
|
|
|
|
android:parentActivityName=".devices.qhybrid.HybridHRWatchfaceDesignerActivity" />
|
2021-11-16 14:25:58 +01:00
|
|
|
|
2020-10-10 16:45:34 +02:00
|
|
|
<activity
|
|
|
|
android:name=".devices.um25.Activity.DataActivity"
|
|
|
|
android:exported="true" />
|
2021-07-10 22:13:33 +02:00
|
|
|
|
2022-09-25 21:31:58 +02:00
|
|
|
<activity
|
|
|
|
android:name=".devices.supercars.ControlActivity"
|
|
|
|
android:exported="true" />
|
|
|
|
|
2022-06-19 02:55:18 +02:00
|
|
|
<activity
|
|
|
|
android:name=".devices.binary_sensor.activity.DataActivity"
|
|
|
|
android:exported="true" />
|
|
|
|
|
2021-07-10 22:13:33 +02:00
|
|
|
<activity
|
|
|
|
android:name=".activities.GpxReceiverActivity"
|
|
|
|
android:label="@string/gpx_receiver_activity_title"
|
|
|
|
android:screenOrientation="portrait"
|
2022-10-09 14:53:04 +02:00
|
|
|
android:windowSoftInputMode="stateHidden"
|
|
|
|
android:exported="false">
|
2021-07-10 22:13:33 +02:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.SEND" />
|
|
|
|
<action android:name="android.intent.action.SEND_MULTIPLE" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<data android:mimeType="*/*" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2022-02-08 13:38:23 +01:00
|
|
|
|
2022-08-21 12:26:09 +02:00
|
|
|
<activity
|
|
|
|
android:name=".activities.WakeActivity"
|
|
|
|
android:label="WakeActivity">
|
|
|
|
</activity>
|
|
|
|
|
2022-02-08 13:38:23 +01:00
|
|
|
<activity
|
2022-05-22 18:11:45 +02:00
|
|
|
android:name=".externalevents.opentracks.OpenTracksController"
|
2022-02-08 13:38:23 +01:00
|
|
|
android:label="OpenTracks controller and intent receiver"
|
|
|
|
android:exported="true"/>
|
2015-01-07 14:00:18 +01:00
|
|
|
</application>
|
2022-08-21 12:26:09 +02:00
|
|
|
|
2021-07-10 22:13:33 +02:00
|
|
|
</manifest>
|