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"
|
2015-06-24 00:23:38 +02:00
|
|
|
package="nodomain.freeyourgadget.gadgetbridge">
|
2015-05-05 00:48:02 +02:00
|
|
|
|
2015-12-15 00:26:06 +01:00
|
|
|
<!--
|
|
|
|
Comment in for testing Pebble Emulator
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
-->
|
2015-01-07 14:00:18 +01:00
|
|
|
<uses-permission android:name="android.permission.BLUETOOTH" />
|
2015-05-05 00:48:02 +02:00
|
|
|
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
|
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" />
|
2015-03-07 17:44:39 +01:00
|
|
|
<uses-permission android:name="android.permission.CALL_PHONE" />
|
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" />
|
2015-03-28 23:23:10 +01:00
|
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
2015-01-26 18:52:19 +01:00
|
|
|
<uses-permission android:name="com.fsck.k9.permission.READ_MESSAGES" />
|
2015-12-23 22:01:26 +01:00
|
|
|
<uses-permission android:name="android.permission.READ_CALENDAR" />
|
2016-05-26 14:39:54 +02:00
|
|
|
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
|
2015-05-05 00:48:02 +02:00
|
|
|
|
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" />
|
|
|
|
|
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"
|
2015-01-07 14:00:18 +01:00
|
|
|
android:icon="@drawable/ic_launcher"
|
|
|
|
android:label="@string/app_name"
|
2015-06-24 00:23:38 +02:00
|
|
|
android:theme="@style/GadgetbridgeTheme">
|
2015-01-07 14:00:18 +01:00
|
|
|
<activity
|
2015-08-03 23:09:49 +02:00
|
|
|
android:name=".activities.ControlCenter"
|
2015-06-24 00:23:38 +02:00
|
|
|
android:label="@string/title_activity_controlcenter">
|
2015-01-07 14:00:18 +01:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
2015-05-05 00:48:02 +02: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"
|
2016-02-29 21:36:39 +01:00
|
|
|
android:parentActivityName=".activities.ControlCenter" />
|
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" />
|
2015-03-25 22:23:45 +01:00
|
|
|
<activity
|
2016-03-03 13:05:51 +01:00
|
|
|
android:launchMode="singleTop"
|
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"
|
2016-02-29 21:36:39 +01:00
|
|
|
android:parentActivityName=".activities.ControlCenter" />
|
2015-09-10 13:48:54 +02:00
|
|
|
<activity
|
|
|
|
android:name=".activities.AppBlacklistActivity"
|
2015-12-07 01:26:58 +01:00
|
|
|
android:label="@string/title_activity_appblacklist"
|
2016-02-29 21:36:39 +01:00
|
|
|
android:parentActivityName=".activities.SettingsActivity" />
|
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"
|
|
|
|
android:parentActivityName=".activities.ControlCenter">
|
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" />
|
|
|
|
<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" />
|
|
|
|
<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
|
|
|
|
|
|
|
<!-- to receive the firmwares from the donwload content provider -->
|
|
|
|
<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>
|
2016-10-29 16:27:31 +02:00
|
|
|
<!-- to receive firmwares from the donwload content provider if recognized as zip-->
|
|
|
|
<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>
|
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"
|
2015-06-24 00:23:38 +02:00
|
|
|
android:permission="android.permission.BIND_NOTIFICATION_LISTENER_SERVICE">
|
2015-01-07 14:00:18 +01:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.service.notification.NotificationListenerService" />
|
|
|
|
</intent-filter>
|
|
|
|
</service>
|
2015-08-04 01:01:14 +02:00
|
|
|
<service android:name=".service.DeviceCommunicationService" />
|
2015-12-15 00:26:06 +01:00
|
|
|
|
|
|
|
<receiver
|
2015-05-30 21:40:42 +02:00
|
|
|
android:name=".externalevents.BluetoothStateChangeReceiver"
|
2015-06-24 00:23:38 +02:00
|
|
|
android:exported="false">
|
2015-03-17 21:41:58 +01:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.bluetooth.adapter.action.STATE_CHANGED" />
|
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
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>
|
2015-02-07 12:58:18 +01:00
|
|
|
|
2016-06-19 00:53:53 +02:00
|
|
|
<!--
|
|
|
|
forcing the DebugActivity to portrait mode avoids crashes with the progress
|
|
|
|
dialog when changing orientation
|
|
|
|
-->
|
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"
|
2015-12-08 23:41:45 +01:00
|
|
|
android:parentActivityName=".activities.ControlCenter"
|
2016-08-31 15:12:26 +02:00
|
|
|
android:screenOrientation="portrait"
|
|
|
|
android:windowSoftInputMode="stateHidden" />
|
|
|
|
<activity
|
|
|
|
android:name=".activities.DbManagementActivity"
|
|
|
|
android:label="@string/title_activity_db_management"
|
|
|
|
android:parentActivityName=".activities.ControlCenter"
|
2016-06-19 00:53:53 +02:00
|
|
|
android:screenOrientation="portrait"
|
2016-02-29 21:36:39 +01:00
|
|
|
android:windowSoftInputMode="stateHidden" />
|
2016-08-24 20:15:26 +02:00
|
|
|
<activity
|
|
|
|
android:name=".activities.OnboardingActivity"
|
2016-08-29 00:23:48 +02:00
|
|
|
android:label="@string/title_activity_onboarding"
|
2016-08-24 20:15:26 +02:00
|
|
|
android:parentActivityName=".activities.ControlCenter"
|
|
|
|
android:screenOrientation="portrait" />
|
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"
|
2016-02-29 21:36:39 +01:00
|
|
|
android:parentActivityName=".activities.ControlCenter" />
|
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" />
|
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" />
|
2015-06-23 23:03:05 +02:00
|
|
|
<activity
|
2015-08-03 23:09:49 +02:00
|
|
|
android:name=".activities.charts.ChartsActivity"
|
2015-06-23 23:03:05 +02:00
|
|
|
android:label="@string/title_activity_charts"
|
2016-02-29 21:36:39 +01:00
|
|
|
android:parentActivityName=".activities.ControlCenter" />
|
2015-06-24 20:14:08 +02:00
|
|
|
<activity
|
|
|
|
android:name=".activities.ConfigureAlarms"
|
|
|
|
android:label="@string/title_activity_set_alarm"
|
2016-02-29 21:36:39 +01:00
|
|
|
android:parentActivityName=".activities.SettingsActivity" />
|
2015-06-24 20:14:08 +02:00
|
|
|
<activity
|
|
|
|
android:name=".activities.AlarmDetails"
|
|
|
|
android:label="@string/title_activity_alarm_details"
|
2016-02-29 21:36:39 +01:00
|
|
|
android:parentActivityName=".activities.ConfigureAlarms" />
|
2016-09-20 20:28:52 +02:00
|
|
|
<activity
|
|
|
|
android:name=".activities.VibrationActivity"
|
|
|
|
android:label="@string/title_activity_vibration"
|
|
|
|
android:parentActivityName=".activities.ControlCenter" />
|
2016-02-29 21:36:39 +01:00
|
|
|
|
|
|
|
<provider
|
|
|
|
android:name=".contentprovider.PebbleContentProvider"
|
|
|
|
android:authorities="com.getpebble.android.provider"
|
|
|
|
android:exported="true" />
|
|
|
|
|
|
|
|
<receiver android:name=".SleepAlarmWidget">
|
|
|
|
<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>
|
2016-02-28 22:25:21 +01:00
|
|
|
|
|
|
|
<activity
|
2016-06-18 21:08:51 +02:00
|
|
|
android:launchMode="singleTask"
|
|
|
|
android:allowTaskReparenting="true"
|
|
|
|
android:clearTaskOnLaunch="true"
|
2016-02-28 22:25:21 +01:00
|
|
|
android:name=".activities.ExternalPebbleJSActivity"
|
2016-03-21 21:19:32 +01:00
|
|
|
android:label="@string/app_configure"
|
2016-06-14 15:56:38 +02:00
|
|
|
android:parentActivityName=".activities.appmanager.AppManagerActivity">
|
2016-02-28 22:25:21 +01:00
|
|
|
<meta-data
|
|
|
|
android:name="android.support.PARENT_ACTIVITY"
|
|
|
|
android:value="nodomain.freeyourgadget.gadgetbridge.activities.ControlCenter" />
|
|
|
|
<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:scheme="gadgetbridge" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
|
2015-01-07 14:00:18 +01:00
|
|
|
</application>
|
2015-02-07 12:58:18 +01:00
|
|
|
|
2015-01-07 14:00:18 +01:00
|
|
|
</manifest>
|