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-05-05 00:48:02 +02:00
|
|
|
package="nodomain.freeyourgadget.gadgetbridge" >
|
|
|
|
|
|
|
|
<uses-sdk
|
|
|
|
android:minSdkVersion="19"
|
|
|
|
android:targetSdkVersion="21" />
|
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-05-09 23:54:47 +02:00
|
|
|
<uses-feature android:name="android.hardware.bluetooth" android:required="true"/>
|
|
|
|
<uses-feature android:name="android.hardware.bluetooth_le" android:required="false"/>
|
2015-01-23 11:32:58 +01:00
|
|
|
|
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"
|
|
|
|
android:icon="@drawable/ic_launcher"
|
|
|
|
android:label="@string/app_name"
|
2015-05-05 00:48:02 +02:00
|
|
|
android:theme="@style/GadgetbridgeTheme" >
|
2015-01-07 14:00:18 +01:00
|
|
|
<activity
|
2015-01-12 00:35:15 +01:00
|
|
|
android:name=".ControlCenter"
|
2015-05-05 00:48:02 +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
|
|
|
|
android:name=".SettingsActivity"
|
2015-05-05 00:48:02 +02:00
|
|
|
android:label="@string/title_activity_settings" >
|
2015-03-28 20:39:46 +01:00
|
|
|
<meta-data
|
|
|
|
android:name="android.support.PARENT_ACTIVITY"
|
|
|
|
android:value=".ControlCenter" />
|
|
|
|
</activity>
|
2015-05-07 01:30:40 +02:00
|
|
|
<activity
|
|
|
|
android:name=".miband.MiBandPreferencesActivity"
|
|
|
|
android:label="@string/preferences_miband_settings" >
|
|
|
|
<meta-data
|
|
|
|
android:name="android.support.PARENT_ACTIVITY"
|
|
|
|
android:value=".SettingsActivity" />
|
|
|
|
</activity>
|
2015-03-25 22:23:45 +01:00
|
|
|
<activity
|
|
|
|
android:name=".AppManagerActivity"
|
2015-05-05 00:48:02 +02:00
|
|
|
android:label="@string/title_activity_appmanager" >
|
2015-03-27 11:23:30 +01:00
|
|
|
<meta-data
|
|
|
|
android:name="android.support.PARENT_ACTIVITY"
|
|
|
|
android:value=".ControlCenter" />
|
|
|
|
</activity>
|
2015-05-21 18:17:39 +02:00
|
|
|
<activity
|
|
|
|
android:name=".SleepMonitorActivity"
|
|
|
|
android:label="@string/title_activity_sleepmonitor" >
|
|
|
|
<meta-data
|
|
|
|
android:name="android.support.PARENT_ACTIVITY"
|
|
|
|
android:value=".ControlCenter" />
|
|
|
|
</activity>
|
2015-03-28 23:23:10 +01:00
|
|
|
<activity
|
2015-04-06 20:58:35 +02:00
|
|
|
android:name=".pebble.PebbleAppInstallerActivity"
|
2015-05-05 00:48:02 +02:00
|
|
|
android:label="@string/title_activity_appinstaller" >
|
2015-03-28 23:23:10 +01:00
|
|
|
<meta-data
|
|
|
|
android:name="android.support.PARENT_ACTIVITY"
|
|
|
|
android:value=".AppManagerActivity" />
|
2015-05-05 00:48:02 +02:00
|
|
|
|
2015-03-28 23:23:10 +01:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
2015-05-05 00:48:02 +02:00
|
|
|
|
2015-03-28 23:23:10 +01:00
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
|
|
|
|
<data android:host="*" />
|
|
|
|
<data android:scheme="file" />
|
|
|
|
<data android:pathPattern=".*\\.pbw" />
|
2015-04-17 12:23:19 +02:00
|
|
|
<data android:pathPattern=".*\\.pbz" />
|
2015-03-28 23:23:10 +01:00
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
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-05-05 00:48:02 +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-05-05 00:48:02 +02:00
|
|
|
<service android:name=".BluetoothCommunicationService" />
|
2015-02-07 12:58:18 +01:00
|
|
|
|
|
|
|
<receiver
|
2015-04-20 22:39:35 +02:00
|
|
|
android:name=".externalevents.PhoneCallReceiver"
|
2015-05-05 00:48:02 +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-05-05 00:48:02 +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-05-07 23:46:18 +02:00
|
|
|
<receiver android:name=".externalevents.TimeChangeReceiver"
|
|
|
|
android:enabled="false" >
|
|
|
|
<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-05-05 00:48:02 +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"
|
|
|
|
android:enabled="false">
|
|
|
|
<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-05-05 00:48:02 +02:00
|
|
|
android:enabled="false" >
|
2015-02-08 23:53:40 +01:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="com.andrew.apollo.metachanged" />
|
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
2015-03-27 12:13:19 +01:00
|
|
|
<receiver
|
|
|
|
android:name=".BluetoothStateChangeReceiver"
|
2015-05-05 00:48:02 +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
|
|
|
|
android:name=".GBMusicControlReceiver"
|
2015-05-05 00:48:02 +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
|
|
|
|
android:name=".GBCallControlReceiver"
|
2015-05-05 00:48:02 +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
|
|
|
|
android:name=".DebugActivity"
|
2015-05-05 00:48:02 +02:00
|
|
|
android:label="@string/title_activity_debug" >
|
|
|
|
<meta-data
|
|
|
|
android:name="android.support.PARENT_ACTIVITY"
|
|
|
|
android:value=".ControlCenter" />
|
|
|
|
</activity>
|
|
|
|
<activity
|
|
|
|
android:name=".discovery.DiscoveryActivity"
|
|
|
|
android:label="@string/title_activity_discovery" >
|
2015-03-27 11:23:30 +01:00
|
|
|
<meta-data
|
|
|
|
android:name="android.support.PARENT_ACTIVITY"
|
|
|
|
android:value=".ControlCenter" />
|
|
|
|
</activity>
|
2015-05-05 00:48:02 +02:00
|
|
|
<activity
|
|
|
|
android:name=".activities.AndroidPairingActivity"
|
|
|
|
android:label="@string/title_activity_android_pairing" >
|
|
|
|
</activity>
|
|
|
|
<activity
|
|
|
|
android:name=".miband.MiBandPairingActivity"
|
|
|
|
android:label="@string/title_activity_mi_band_pairing" >
|
|
|
|
</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>
|