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
|
|
|
|
|
|
|
<uses-sdk
|
|
|
|
android:minSdkVersion="19"
|
2015-08-29 00:12:51 +02:00
|
|
|
android:targetSdkVersion="23" />
|
2015-08-20 22:41:38 +02:00
|
|
|
<!--
|
2015-08-19 00:03:52 +02:00
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
2015-08-20 22:41:38 +02:00
|
|
|
-->
|
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-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-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-01-07 14:00:18 +01:00
|
|
|
android:allowBackup="true"
|
2015-08-29 00:12:51 +02:00
|
|
|
android:fullBackupContent="true"
|
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-06-24 00:23:38 +02:00
|
|
|
android:label="@string/title_activity_settings">
|
2015-03-28 20:39:46 +01:00
|
|
|
<meta-data
|
|
|
|
android:name="android.support.PARENT_ACTIVITY"
|
2015-08-03 23:09:49 +02:00
|
|
|
android:value=".activities.ControlCenter" />
|
2015-03-28 20:39:46 +01:00
|
|
|
</activity>
|
2015-05-07 01:30:40 +02:00
|
|
|
<activity
|
2015-08-03 23:09:49 +02:00
|
|
|
android:name=".devices.miband.MiBandPreferencesActivity"
|
2015-06-24 00:23:38 +02:00
|
|
|
android:label="@string/preferences_miband_settings">
|
2015-05-07 01:30:40 +02:00
|
|
|
<meta-data
|
|
|
|
android:name="android.support.PARENT_ACTIVITY"
|
2015-08-03 23:09:49 +02:00
|
|
|
android:value=".activities.SettingsActivity" />
|
2015-05-07 01:30:40 +02:00
|
|
|
</activity>
|
2015-03-25 22:23:45 +01:00
|
|
|
<activity
|
2015-08-03 23:09:49 +02:00
|
|
|
android:name=".activities.AppManagerActivity"
|
2015-06-24 00:23:38 +02:00
|
|
|
android:label="@string/title_activity_appmanager">
|
2015-03-27 11:23:30 +01:00
|
|
|
<meta-data
|
|
|
|
android:name="android.support.PARENT_ACTIVITY"
|
2015-08-03 23:09:49 +02:00
|
|
|
android:value=".activities.ControlCenter" />
|
2015-05-21 18:17:39 +02:00
|
|
|
</activity>
|
2015-09-10 13:48:54 +02:00
|
|
|
<activity
|
|
|
|
android:name=".activities.AppBlacklistActivity"
|
|
|
|
android:label="@string/title_activity_appblacklist">
|
|
|
|
<meta-data
|
|
|
|
android:name="android.support.PARENT_ACTIVITY"
|
|
|
|
android:value=".activities.SettingsActivity" />
|
|
|
|
</activity>
|
2015-03-28 23:23:10 +01:00
|
|
|
<activity
|
2015-07-28 17:30:20 +02:00
|
|
|
android:name=".activities.FwAppInstallerActivity"
|
|
|
|
android:label="@string/title_activity_fw_app_insaller">
|
2015-03-28 23:23:10 +01:00
|
|
|
<meta-data
|
|
|
|
android:name="android.support.PARENT_ACTIVITY"
|
2015-08-03 23:09:49 +02:00
|
|
|
android:value=".activities.ControlCenter" />
|
2015-08-29 00:12:51 +02:00
|
|
|
|
2015-03-28 23:23:10 +01:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
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" />
|
2015-07-28 17:30:20 +02:00
|
|
|
|
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" />
|
2015-07-30 17:14:44 +02:00
|
|
|
|
2015-08-29 00:12:51 +02:00
|
|
|
<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-07-30 17:14:44 +02:00
|
|
|
|
2015-07-28 17:30:20 +02:00
|
|
|
</intent-filter>
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
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" />
|
2015-07-30 17:14:44 +02:00
|
|
|
|
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" />
|
2015-07-28 17:30:20 +02:00
|
|
|
|
2015-08-29 00:12:51 +02:00
|
|
|
<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-07-28 17:30:20 +02:00
|
|
|
|
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" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<data android:mimeType="application/octet-stream" />
|
|
|
|
</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-02-07 12:58:18 +01:00
|
|
|
|
|
|
|
<receiver
|
2015-04-20 22:39:35 +02:00
|
|
|
android:name=".externalevents.PhoneCallReceiver"
|
2015-06-24 00:23:38 +02:00
|
|
|
android:enabled="false">
|
2015-01-22 22:49:50 +01:00
|
|
|
<intent-filter>
|
2015-02-07 12:58:18 +01:00
|
|
|
<action android:name="android.intent.action.PHONE_STATE" />
|
|
|
|
</intent-filter>
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.NEW_OUTGOING_CALL" />
|
2015-01-22 22:49:50 +01:00
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
2015-02-07 12:58:18 +01:00
|
|
|
<receiver
|
2015-04-20 22:39:35 +02:00
|
|
|
android:name=".externalevents.SMSReceiver"
|
2015-06-24 00:23:38 +02:00
|
|
|
android:enabled="false">
|
2015-01-24 12:21:15 +01:00
|
|
|
<intent-filter>
|
2015-02-07 12:58:18 +01:00
|
|
|
<action android:name="android.provider.Telephony.SMS_RECEIVED" />
|
2015-01-24 12:21:15 +01:00
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
2015-06-23 23:03:05 +02:00
|
|
|
<receiver
|
|
|
|
android:name=".externalevents.TimeChangeReceiver"
|
2015-06-24 00:23:38 +02:00
|
|
|
android:enabled="false">
|
2015-05-07 23:46:18 +02:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.TIMEZONE_CHANGED" />
|
|
|
|
<action android:name="android.intent.action.TIME_SET" />
|
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
2015-02-07 12:58:18 +01:00
|
|
|
<receiver
|
2015-04-20 22:39:35 +02:00
|
|
|
android:name=".externalevents.K9Receiver"
|
2015-06-24 00:23:38 +02:00
|
|
|
android:enabled="false">
|
2015-01-26 18:52:19 +01:00
|
|
|
<intent-filter>
|
|
|
|
<data android:scheme="email" />
|
2015-05-05 00:48:02 +02:00
|
|
|
|
2015-01-26 18:52:19 +01:00
|
|
|
<action android:name="com.fsck.k9.intent.action.EMAIL_RECEIVED" />
|
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
2015-05-04 01:03:56 +02:00
|
|
|
<receiver
|
|
|
|
android:name=".externalevents.PebbleReceiver"
|
2015-06-24 00:23:38 +02:00
|
|
|
android:enabled="false">
|
2015-05-04 01:03:56 +02:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="com.getpebble.action.SEND_NOTIFICATION" />
|
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
2015-02-08 23:53:40 +01:00
|
|
|
<receiver
|
2015-04-20 22:39:35 +02:00
|
|
|
android:name=".externalevents.MusicPlaybackReceiver"
|
2015-06-24 00:23:38 +02:00
|
|
|
android:enabled="false">
|
2015-02-08 23:53:40 +01:00
|
|
|
<intent-filter>
|
2015-09-16 00:53:54 +02:00
|
|
|
<action android:name="com.android.music.metachanged"/>
|
2015-02-08 23:53:40 +01:00
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
2015-03-27 12:13:19 +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
|
|
|
|
|
|
|
<activity
|
2015-08-03 23:09:49 +02:00
|
|
|
android:name=".activities.DebugActivity"
|
2015-06-24 00:23:38 +02:00
|
|
|
android:label="@string/title_activity_debug">
|
2015-05-05 00:48:02 +02:00
|
|
|
<meta-data
|
|
|
|
android:name="android.support.PARENT_ACTIVITY"
|
2015-08-03 23:09:49 +02:00
|
|
|
android:value=".activities.ControlCenter" />
|
2015-05-05 00:48:02 +02:00
|
|
|
</activity>
|
|
|
|
<activity
|
2015-08-03 23:09:49 +02:00
|
|
|
android:name=".activities.DiscoveryActivity"
|
2015-06-24 00:23:38 +02:00
|
|
|
android:label="@string/title_activity_discovery">
|
2015-03-27 11:23:30 +01:00
|
|
|
<meta-data
|
|
|
|
android:name="android.support.PARENT_ACTIVITY"
|
2015-08-03 23:09:49 +02:00
|
|
|
android:value=".activities.ControlCenter" />
|
2015-03-27 11:23:30 +01:00
|
|
|
</activity>
|
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"
|
2015-08-03 23:09:49 +02:00
|
|
|
android:parentActivityName=".activities.ControlCenter">
|
2015-06-23 23:03:05 +02:00
|
|
|
<meta-data
|
|
|
|
android:name="android.support.PARENT_ACTIVITY"
|
2015-08-03 23:09:49 +02:00
|
|
|
android:value=".activities.ControlCenter" />
|
2015-06-23 23:03:05 +02:00
|
|
|
</activity>
|
2015-06-24 20:14:08 +02:00
|
|
|
<activity
|
|
|
|
android:name=".activities.ConfigureAlarms"
|
|
|
|
android:label="@string/title_activity_set_alarm"
|
2015-08-29 00:12:51 +02:00
|
|
|
android:parentActivityName=".activities.SettingsActivity">
|
2015-06-24 20:14:08 +02:00
|
|
|
<meta-data
|
|
|
|
android:name="android.support.PARENT_ACTIVITY"
|
2015-08-03 23:09:49 +02:00
|
|
|
android:value=".activities.SettingsActivity" />
|
2015-06-24 20:14:08 +02:00
|
|
|
</activity>
|
|
|
|
<activity
|
|
|
|
android:name=".activities.AlarmDetails"
|
|
|
|
android:label="@string/title_activity_alarm_details"
|
2015-08-29 00:12:51 +02:00
|
|
|
android:parentActivityName=".activities.ConfigureAlarms">
|
2015-06-24 20:14:08 +02:00
|
|
|
<meta-data
|
|
|
|
android:name="android.support.PARENT_ACTIVITY"
|
|
|
|
android:value="nodomain.freeyourgadget.gadgetbridge.activities.ConfigureAlarms" />
|
|
|
|
</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>
|