mirror of https://github.com/tasks/tasks
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
683 lines
32 KiB
XML
683 lines
32 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="com.timsu.astrid"
|
|
android:versionName="4.1.3.1"
|
|
android:versionCode="269">
|
|
|
|
<!-- widgets, alarms, and services will break if Astrid is installed on SD card -->
|
|
<!-- android:installLocation="internalOnly"> -->
|
|
|
|
|
|
<!-- ================================================== Used Permissions = -->
|
|
|
|
<!-- for notifications -->
|
|
<uses-permission android:name="android.permission.VIBRATE"/>
|
|
<!-- for synchronization -->
|
|
<uses-permission android:name="android.permission.INTERNET"/>
|
|
<!-- for google calendar integration -->
|
|
<uses-permission android:name="android.permission.WRITE_CALENDAR" />
|
|
<uses-permission android:name="android.permission.READ_CALENDAR" />
|
|
<!-- for creating shortcuts -->
|
|
<uses-permission android:name="com.android.launcher.permission.INSTALL_SHORTCUT" />
|
|
<!-- for backup -->
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
|
<!-- for analytics -->
|
|
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
|
|
<!-- for google tasks -->
|
|
<uses-permission android:name="android.permission.GET_ACCOUNTS" />
|
|
<uses-permission android:name="android.permission.USE_CREDENTIALS" />
|
|
<uses-permission android:name="android.permission.MANAGE_ACCOUNTS" />
|
|
<uses-permission android:name="com.google.android.googleapps.permission.GOOGLE_AUTH" />
|
|
<!-- for task sharing -->
|
|
<uses-permission android:name="android.permission.READ_CONTACTS" />
|
|
<!-- for push notifications -->
|
|
<uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" />
|
|
<!-- for missed call reminders -->
|
|
<uses-permission android:name="android.permission.READ_PHONE_STATE"/>
|
|
<!-- required for ics -->
|
|
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>
|
|
<uses-permission android:name="android.permission.RECORD_AUDIO" />
|
|
|
|
<!-- ============================================== Exported Permissions = -->
|
|
|
|
<!-- for v2 tasks provider -->
|
|
<permission android:name="com.timsu.astrid.permission.READ_TASKS"
|
|
android:permissionGroup="android.permission-group.MESSAGES"
|
|
android:protectionLevel="normal"
|
|
android:label="@string/read_permission_label"
|
|
android:description="@string/read_permission_desc"/>
|
|
<uses-permission android:name="com.timsu.astrid.permission.READ_TASKS"/>
|
|
|
|
<!-- for reading data from add-ons or astrid via v3 content provider -->
|
|
<permission android:name="com.todoroo.astrid.READ"
|
|
android:description="@string/read_permission_desc"
|
|
android:protectionLevel="normal"
|
|
android:label="@string/read_permission_label" />
|
|
<uses-permission android:name="com.todoroo.astrid.READ" />
|
|
|
|
<!-- for writing data to add-ons or astrid via v3 content provider -->
|
|
<permission android:name="com.todoroo.astrid.WRITE"
|
|
android:description="@string/write_permission_desc"
|
|
android:protectionLevel="normal"
|
|
android:label="@string/write_permission_label" />
|
|
<uses-permission android:name="com.todoroo.astrid.WRITE" />
|
|
<!-- for receiving C2D messages-->
|
|
<permission android:name="com.timsu.astrid.permission.C2D_MESSAGE"
|
|
android:protectionLevel="signature" />
|
|
<uses-permission android:name="com.timsu.astrid.permission.C2D_MESSAGE" />
|
|
|
|
<!-- ========================================================== Metadata = -->
|
|
|
|
<uses-sdk android:targetSdkVersion="10"
|
|
android:minSdkVersion="7"/>
|
|
<supports-screens android:xlargeScreens="true" android:largeScreens="true"/>
|
|
|
|
<uses-feature android:name="android.hardware.touchscreen" android:required="false"/>
|
|
|
|
<application android:icon="@drawable/icon" android:label="@string/app_name"
|
|
android:theme="@style/Theme"
|
|
android:name="greendroid.app.GDApplication"
|
|
android:hardwareAccelerated="false"
|
|
android:manageSpaceActivity="com.todoroo.astrid.core.OldTaskPreferences">
|
|
|
|
<!-- ====================================================== Activities = -->
|
|
|
|
<!-- Activity that displays task list -->
|
|
<activity android:name="com.todoroo.astrid.activity.TaskListActivity"
|
|
android:windowSoftInputMode="stateHidden|adjustResize">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.VIEW" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
</intent-filter>
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.SEARCH" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
</intent-filter>
|
|
<meta-data android:name="android.app.searchable"
|
|
android:resource="@xml/filter_list_searchable" />
|
|
</activity>
|
|
<!-- Activity launched from shortcut -->
|
|
<activity android:name="com.todoroo.astrid.activity.ShortcutActivity"
|
|
android:clearTaskOnLaunch="true">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
</intent-filter>
|
|
</activity>
|
|
<!-- Activity for selecting Android shortcut -->
|
|
<activity android:name="com.todoroo.astrid.activity.FilterShortcutActivity"
|
|
android:label="@string/FSA_label">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.CREATE_SHORTCUT" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
</intent-filter>
|
|
</activity>
|
|
<!-- Activity launched from ShareLink menu item -->
|
|
<activity android:name="com.todoroo.astrid.activity.ShareLinkActivity"
|
|
android:clearTaskOnLaunch="true">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.SEND" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
<data android:mimeType="text/plain" />
|
|
</intent-filter>
|
|
</activity>
|
|
<!-- Legacy Task List shortcut activity -->
|
|
<activity android:name=".activities.TaskList">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
</intent-filter>
|
|
</activity>
|
|
<!-- Activity that creates or edits tasks -->
|
|
<activity android:name="com.todoroo.astrid.activity.TaskEditActivity"
|
|
android:windowSoftInputMode="stateHidden">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
</intent-filter>
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.VIEW" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
<data android:mimeType="vnd.android.cursor.item/task" />
|
|
</intent-filter>
|
|
</activity>
|
|
<!-- Activity that selects and installs add-ons -->
|
|
<activity android:name="com.todoroo.astrid.activity.AddOnActivity"
|
|
android:windowSoftInputMode="stateHidden" />
|
|
<!-- Activity for preferences -->
|
|
<activity android:name="com.todoroo.astrid.activity.EditPreferences"
|
|
android:theme="@android:style/Theme" />
|
|
<!-- Activity that configures widget -->
|
|
<activity android:name="com.todoroo.astrid.widget.TasksWidget$ConfigActivity">
|
|
<intent-filter>
|
|
<action android:name="android.appwidget.action.APPWIDGET_CONFIGURE" />
|
|
</intent-filter>
|
|
</activity>
|
|
|
|
<!-- Start of Crittercism.com Code -->
|
|
<activity android:name="com.crittercism.NewFeedbackSpringboardActivity" android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen"></activity>
|
|
<activity android:name="com.crittercism.NewFeedbackIssueListActivity" android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen"></activity>
|
|
<activity android:name="com.crittercism.NewFeedbackQuestionListActivity" android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen"></activity>
|
|
<activity android:name="com.crittercism.NewFeedbackItemDetailsActivity" android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen"></activity>
|
|
<activity android:name="com.crittercism.NewFeedbackCreateActivity" android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen"></activity>
|
|
<activity android:name="com.crittercism.NotificationActivity"/>
|
|
|
|
<service android:name="com.crittercism.service.CrittercismService"
|
|
android:process="com.crittercism.service" android:exported="true">
|
|
<intent-filter>
|
|
<action android:name="com.crittercism.service.CrittercismService" />
|
|
</intent-filter>
|
|
</service>
|
|
<receiver android:name="com.crittercism.service.BReceiver">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.BOOT_COMPLETED"></action>
|
|
</intent-filter>
|
|
</receiver>
|
|
<!-- End of Crittercism.com Code -->
|
|
|
|
|
|
<!-- ======================================================= Receivers = -->
|
|
|
|
<receiver android:name="com.todoroo.astrid.reminders.Notifications" />
|
|
|
|
<receiver android:name="com.todoroo.astrid.reminders.Notifications$ShowNotificationReceiver">
|
|
<intent-filter>
|
|
<action android:name="com.timsu.astrid.IN_APP_NOTIFY"/>
|
|
</intent-filter>
|
|
</receiver>
|
|
|
|
<!-- widgets -->
|
|
<receiver android:name="com.todoroo.astrid.widget.TasksWidget">
|
|
<intent-filter>
|
|
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
|
|
</intent-filter>
|
|
<meta-data android:name="android.appwidget.provider"
|
|
android:resource="@xml/widget_provider_info" />
|
|
</receiver>
|
|
|
|
<receiver android:name="com.todoroo.astrid.service.GlobalEventReceiver">
|
|
<intent-filter>
|
|
<action android:name="com.todoroo.astrid.FLUSH_DETAILS" />
|
|
</intent-filter>
|
|
</receiver>
|
|
|
|
<receiver android:name="com.todoroo.astrid.calls.PhoneStateChangedReceiver">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.PHONE_STATE"/>
|
|
</intent-filter>
|
|
</receiver>
|
|
|
|
<!-- ======================================================== Services = -->
|
|
|
|
<service android:name="com.todoroo.astrid.widget.TasksWidget$WidgetUpdateService" />
|
|
|
|
<!-- ======================================================= Providers = -->
|
|
|
|
<provider android:name="com.todoroo.astrid.provider.Astrid2TaskProvider"
|
|
android:authorities="com.timsu.astrid.tasksprovider"
|
|
android:multiprocess="true"
|
|
android:grantUriPermissions="true"
|
|
android:readPermission="com.timsu.astrid.permission.READ_TASKS"/>
|
|
|
|
<provider android:name="com.todoroo.astrid.provider.Astrid3ContentProvider"
|
|
android:authorities="com.todoroo.astrid"
|
|
android:multiprocess="true"
|
|
android:grantUriPermissions="true"
|
|
android:readPermission="com.todoroo.astrid.READ"
|
|
android:writePermission="com.todoroo.astrid.WRITE"/>
|
|
|
|
<provider android:name="com.todoroo.astrid.provider.SqlContentProvider"
|
|
android:authorities="com.todoroo.astrid.private"
|
|
android:multiprocess="true"
|
|
android:grantUriPermissions="true"
|
|
android:readPermission="com.todoroo.astrid.READ"
|
|
android:writePermission="com.todoroo.astrid.WRITE"/>
|
|
|
|
<!-- ========================================================= Plugins = -->
|
|
|
|
<!-- core -->
|
|
<receiver android:name="com.todoroo.astrid.core.CorePlugin">
|
|
<intent-filter>
|
|
<action android:name="com.todoroo.astrid.REQUEST_ADDONS" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
</intent-filter>
|
|
</receiver>
|
|
<receiver android:name="com.todoroo.astrid.core.CoreFilterExposer">
|
|
<intent-filter android:priority="9000">
|
|
<action android:name="com.todoroo.astrid.REQUEST_FILTERS" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
</intent-filter>
|
|
</receiver>
|
|
<activity android:name="com.todoroo.astrid.core.DefaultsPreferences"
|
|
android:theme="@android:style/Theme"
|
|
android:label="@string/EPr_defaults_header">
|
|
<intent-filter>
|
|
<action android:name="com.todoroo.astrid.SETTINGS" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
</intent-filter>
|
|
</activity>
|
|
<activity android:name="com.todoroo.astrid.activity.BeastModePreferences"
|
|
android:theme="@android:style/Theme">
|
|
</activity>
|
|
|
|
<activity android:name="com.todoroo.astrid.core.OldTaskPreferences"
|
|
android:theme="@android:style/Theme"
|
|
android:label="@string/EPr_manage_header">
|
|
<intent-filter>
|
|
<action android:name="com.todoroo.astrid.SETTINGS" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
</intent-filter>
|
|
</activity>
|
|
|
|
<activity android:name="com.todoroo.astrid.core.LabsPreferences"
|
|
android:theme="@android:style/Theme"
|
|
android:label="@string/EPr_labs_header">
|
|
<intent-filter>
|
|
<action android:name="com.todoroo.astrid.SETTINGS" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
</intent-filter>
|
|
</activity>
|
|
|
|
<activity android:name="com.todoroo.astrid.calls.MissedCallActivity"
|
|
android:theme="@android:style/Theme.Translucent.NoTitleBar">
|
|
</activity>
|
|
|
|
<!-- tags -->
|
|
<receiver android:name="com.todoroo.astrid.tags.TagsPlugin">
|
|
<intent-filter>
|
|
<action android:name="com.todoroo.astrid.REQUEST_ADDONS" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
</intent-filter>
|
|
</receiver>
|
|
<receiver android:name="com.todoroo.astrid.tags.TagFilterExposer">
|
|
<intent-filter>
|
|
<action android:name="com.todoroo.astrid.REQUEST_FILTERS" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
</intent-filter>
|
|
</receiver>
|
|
<receiver android:name="com.todoroo.astrid.tags.TagCustomFilterCriteriaExposer">
|
|
<intent-filter>
|
|
<action android:name="com.todoroo.astrid.REQUEST_CUSTOM_FILTER_CRITERIA" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
</intent-filter>
|
|
</receiver>
|
|
<receiver android:name="com.todoroo.astrid.tags.TagDetailExposer">
|
|
<intent-filter>
|
|
<action android:name="com.todoroo.astrid.REQUEST_DETAILS" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
</intent-filter>
|
|
</receiver>
|
|
|
|
<!-- custom filters -->
|
|
<receiver android:name="com.todoroo.astrid.core.CustomFilterExposer">
|
|
<intent-filter android:priority="9000">
|
|
<action android:name="com.todoroo.astrid.REQUEST_FILTERS" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
</intent-filter>
|
|
</receiver>
|
|
<activity android:name="com.todoroo.astrid.core.CustomFilterActivity" android:theme="@style/Theme.Dialog" />
|
|
<activity android:name="com.todoroo.astrid.core.CustomFilterExposer$DeleteActivity" android:theme="@style/Theme.FullTransparent" />
|
|
<activity android:name="com.todoroo.astrid.tags.TagFilterExposer$DeleteTagActivity" android:theme="@style/Theme.FullTransparent" />
|
|
<activity android:name="com.todoroo.astrid.tags.TagFilterExposer$RenameTagActivity" android:theme="@style/Theme.FullTransparent" />
|
|
|
|
<!-- People view -->
|
|
<receiver android:name="com.todoroo.astrid.people.PeopleFilterExposer">
|
|
<intent-filter>
|
|
<action android:name="com.timsu.astrid.REQUEST_PEOPLE_FILTERS"/>
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
|
</intent-filter>
|
|
</receiver>
|
|
<activity android:name="com.todoroo.astrid.people.PeopleViewActivity"
|
|
android:windowSoftInputMode="stateHidden|adjustResize"/>
|
|
|
|
<!-- alarms -->
|
|
<receiver android:name="com.todoroo.astrid.alarms.AlarmTaskRepeatListener">
|
|
<intent-filter>
|
|
<action android:name="com.todoroo.astrid.TASK_REPEATED" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
</intent-filter>
|
|
</receiver>
|
|
<receiver android:name="com.todoroo.astrid.alarms.AlarmDetailExposer">
|
|
<intent-filter>
|
|
<action android:name="com.todoroo.astrid.REQUEST_DETAILS" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
</intent-filter>
|
|
</receiver>
|
|
|
|
<!-- actfm -->
|
|
<activity android:name="com.todoroo.astrid.actfm.ActFmLoginActivity"
|
|
android:configChanges="keyboardHidden"/>
|
|
<activity android:name="com.todoroo.astrid.taskrabbit.TaskRabbitOAuthLoginActivity" />
|
|
<activity android:name="com.todoroo.astrid.actfm.ActFmPreferences"
|
|
android:theme="@android:style/Theme"
|
|
android:label="@string/actfm_APr_header">
|
|
<meta-data android:name="category"
|
|
android:resource="@string/SyP_label" />
|
|
<intent-filter>
|
|
<action android:name="com.todoroo.astrid.SETTINGS" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
</intent-filter>
|
|
</activity>
|
|
<activity android:name="com.todoroo.astrid.actfm.ActFmGoogleAuthActivity"
|
|
android:theme="@style/Theme" android:configChanges="orientation|keyboardHidden"/>
|
|
<service android:name="com.todoroo.astrid.actfm.ActFmBackgroundService">
|
|
<intent-filter>
|
|
<action android:name="com.todoroo.astrid.actfm.SYNC" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
</intent-filter>
|
|
</service>
|
|
<activity android:name="com.todoroo.astrid.actfm.TagViewWrapperActivity"
|
|
android:windowSoftInputMode="stateHidden|adjustResize"
|
|
android:theme="@style/Theme">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.VIEW" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
</intent-filter>
|
|
</activity>
|
|
<activity android:name="com.todoroo.astrid.actfm.TagCreateActivity"
|
|
android:theme="@android:style/Theme.Dialog"/>
|
|
<activity android:name="com.todoroo.astrid.actfm.TagSettingsActivity"
|
|
android:windowSoftInputMode="stateHidden"/>
|
|
<activity android:name="com.todoroo.astrid.actfm.TagSettingsActivityTablet"
|
|
android:windowSoftInputMode="stateHidden"
|
|
android:theme="@style/Theme.Dialog"/>
|
|
<activity android:name="com.todoroo.astrid.actfm.TagUpdatesActivity"
|
|
android:windowSoftInputMode="stateHidden"/>
|
|
<receiver android:name="com.timsu.astrid.C2DMReceiver" permission="com.google.android.c2dm.permission.SEND">
|
|
<!-- Receive the actual message -->
|
|
<intent-filter>
|
|
<action android:name="com.google.android.c2dm.intent.RECEIVE" />
|
|
<category android:name="com.timsu.astrid" />
|
|
</intent-filter>
|
|
<!-- Receive the registration id -->
|
|
<intent-filter>
|
|
<action android:name="com.google.android.c2dm.intent.REGISTRATION" />
|
|
<category android:name="com.timsu.astrid" />
|
|
</intent-filter>
|
|
</receiver>
|
|
|
|
<!-- gtasks -->
|
|
<activity android:name="com.todoroo.astrid.gtasks.GtasksListFragment"
|
|
android:windowSoftInputMode="stateHidden|adjustResize"
|
|
android:theme="@style/Theme">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
</intent-filter>
|
|
</activity>
|
|
<activity android:name="com.todoroo.astrid.gtasks.auth.GtasksAuthTokenProvider"/>
|
|
<activity android:name="com.todoroo.astrid.gtasks.auth.GtasksLoginActivity"
|
|
android:theme="@style/Theme" android:configChanges="orientation|keyboardHidden"/>
|
|
<receiver android:name="com.todoroo.astrid.gtasks.GtasksCustomFilterCriteriaExposer">
|
|
<intent-filter>
|
|
<action android:name="com.todoroo.astrid.REQUEST_CUSTOM_FILTER_CRITERIA" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
</intent-filter>
|
|
</receiver>
|
|
<receiver android:name="com.todoroo.astrid.gtasks.GtasksFilterExposer">
|
|
<intent-filter>
|
|
<action android:name="com.todoroo.astrid.REQUEST_FILTERS" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
</intent-filter>
|
|
</receiver>
|
|
<activity android:name="com.todoroo.astrid.gtasks.GtasksListAdder"
|
|
android:theme="@android:style/Theme.Dialog"/>
|
|
<receiver android:name="com.todoroo.astrid.gtasks.GtasksDetailExposer">
|
|
<intent-filter>
|
|
<action android:name="com.todoroo.astrid.REQUEST_DETAILS" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
</intent-filter>
|
|
</receiver>
|
|
<activity android:name="com.todoroo.astrid.gtasks.GtasksPreferences"
|
|
android:theme="@android:style/Theme"
|
|
android:label="@string/gtasks_GPr_header">
|
|
<meta-data android:name="category"
|
|
android:resource="@string/SyP_label" />
|
|
<intent-filter>
|
|
<action android:name="com.todoroo.astrid.SETTINGS" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
</intent-filter>
|
|
</activity>
|
|
<service android:name="com.todoroo.astrid.gtasks.GtasksBackgroundService">
|
|
<intent-filter>
|
|
<action android:name="com.todoroo.astrid.gtasks.SYNC" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
</intent-filter>
|
|
</service>
|
|
<receiver android:name="com.todoroo.astrid.gtasks.GtasksStartupReceiver">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.BOOT_COMPLETED" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
</intent-filter>
|
|
</receiver>
|
|
|
|
<!-- repeats -->
|
|
<receiver android:name="com.todoroo.astrid.repeats.RepeatsPlugin">
|
|
<intent-filter>
|
|
<action android:name="com.todoroo.astrid.REQUEST_ADDONS" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
</intent-filter>
|
|
</receiver>
|
|
<receiver android:name="com.todoroo.astrid.repeats.RepeatTaskCompleteListener">
|
|
<intent-filter android:priority="1">
|
|
<action android:name="com.todoroo.astrid.TASK_COMPLETED" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
</intent-filter>
|
|
</receiver>
|
|
<receiver android:name="com.todoroo.astrid.repeats.RepeatDetailExposer">
|
|
<intent-filter>
|
|
<action android:name="com.todoroo.astrid.REQUEST_DETAILS" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
</intent-filter>
|
|
</receiver>
|
|
|
|
<!-- calendar -->
|
|
<receiver android:name="com.todoroo.astrid.gcal.GCalTaskCompleteListener">
|
|
<intent-filter android:priority="2">
|
|
<action android:name="com.todoroo.astrid.TASK_COMPLETED" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
</intent-filter>
|
|
</receiver>
|
|
|
|
<!-- backup -->
|
|
<service android:name="com.todoroo.astrid.backup.BackupService"/>
|
|
<activity android:name="com.todoroo.astrid.backup.BackupActivity"
|
|
android:theme="@style/Theme.Dialog" />
|
|
<activity android:name="com.todoroo.astrid.backup.BackupPreferences"
|
|
android:theme="@android:style/Theme"
|
|
android:label="@string/backup_BPr_header">
|
|
<intent-filter>
|
|
<action android:name="com.todoroo.astrid.SETTINGS" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
</intent-filter>
|
|
</activity>
|
|
<receiver android:name="com.todoroo.astrid.backup.BackupStartupReceiver">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.BOOT_COMPLETED" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
</intent-filter>
|
|
</receiver>
|
|
|
|
<!-- files -->
|
|
<activity android:name="com.todoroo.astrid.files.AACRecordingActivity"
|
|
android:configChanges="orientation|screenSize"
|
|
android:screenOrientation="portrait"
|
|
android:theme="@android:style/Theme.Dialog"/>
|
|
|
|
<activity android:name="com.todoroo.astrid.files.FileExplore"/>
|
|
|
|
<!-- locale -->
|
|
<activity android:name="com.todoroo.astrid.locale.LocaleEditAlerts"
|
|
android:label="@string/locale_edit_alerts_title"
|
|
android:icon="@drawable/icon_32"
|
|
android:exported="true">
|
|
<intent-filter>
|
|
<action android:name="com.twofortyfouram.locale.intent.action.EDIT_SETTING" />
|
|
</intent-filter>
|
|
</activity>
|
|
<receiver android:name="com.todoroo.astrid.locale.LocaleReceiver">
|
|
<intent-filter>
|
|
<action android:name="com.twofortyfouram.locale.intent.action.FIRE_SETTING" />
|
|
</intent-filter>
|
|
</receiver>
|
|
|
|
<!-- notes -->
|
|
<receiver android:name="com.todoroo.astrid.notes.NotesDetailExposer">
|
|
<intent-filter>
|
|
<action android:name="com.todoroo.astrid.REQUEST_DETAILS" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
</intent-filter>
|
|
</receiver>
|
|
|
|
<receiver android:name="com.todoroo.astrid.timers.TimerFilterExposer">
|
|
<intent-filter android:priority="10000">
|
|
<action android:name="com.todoroo.astrid.REQUEST_FILTERS" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
</intent-filter>
|
|
</receiver>
|
|
<receiver android:name="com.todoroo.astrid.timers.TimerTaskCompleteListener">
|
|
<intent-filter>
|
|
<action android:name="com.todoroo.astrid.TASK_COMPLETED" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
</intent-filter>
|
|
</receiver>
|
|
|
|
<!-- reminders -->
|
|
<activity android:name="com.todoroo.astrid.reminders.ReminderPreferences"
|
|
android:theme="@android:style/Theme"
|
|
android:label="@string/rmd_EPr_alerts_header">
|
|
<intent-filter>
|
|
<action android:name="com.todoroo.astrid.SETTINGS" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
</intent-filter>
|
|
</activity>
|
|
<receiver android:name="com.todoroo.astrid.reminders.ReminderStartupReceiver">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.BOOT_COMPLETED" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
</intent-filter>
|
|
</receiver>
|
|
<activity android:name="com.todoroo.astrid.reminders.NotificationWrapperActivity"
|
|
android:launchMode="singleTask"
|
|
android:finishOnTaskLaunch="true"
|
|
android:clearTaskOnLaunch="true">
|
|
</activity>
|
|
<service android:name="com.todoroo.astrid.reminders.ReminderSchedulingService"/>
|
|
|
|
<!-- producteev -->
|
|
<receiver android:name="com.todoroo.astrid.producteev.ProducteevFilterExposer">
|
|
<intent-filter>
|
|
<action android:name="com.todoroo.astrid.REQUEST_FILTERS" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
</intent-filter>
|
|
</receiver>
|
|
<receiver android:name="com.todoroo.astrid.producteev.ProducteevCustomFilterCriteriaExposer">
|
|
<intent-filter>
|
|
<action android:name="com.todoroo.astrid.REQUEST_CUSTOM_FILTER_CRITERIA" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
</intent-filter>
|
|
</receiver>
|
|
<activity android:name="com.todoroo.astrid.producteev.ProducteevPreferences"
|
|
android:theme="@android:style/Theme"
|
|
android:label="@string/producteev_PPr_header">
|
|
<meta-data android:name="category"
|
|
android:resource="@string/SyP_label" />
|
|
<intent-filter>
|
|
<action android:name="com.todoroo.astrid.SETTINGS" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
</intent-filter>
|
|
</activity>
|
|
<activity android:name="com.todoroo.astrid.producteev.ProducteevLoginActivity"
|
|
android:configChanges="orientation|keyboardHidden" />
|
|
<service android:name="com.todoroo.astrid.producteev.ProducteevBackgroundService">
|
|
<intent-filter>
|
|
<action android:name="com.todoroo.astrid.producteev.SYNC" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
</intent-filter>
|
|
</service>
|
|
<receiver android:name="com.todoroo.astrid.producteev.ProducteevStartupReceiver">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.BOOT_COMPLETED" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
</intent-filter>
|
|
</receiver>
|
|
<receiver android:name="com.todoroo.astrid.producteev.ProducteevDetailExposer">
|
|
<intent-filter>
|
|
<action android:name="com.todoroo.astrid.REQUEST_DETAILS" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
</intent-filter>
|
|
</receiver>
|
|
<receiver android:name="com.todoroo.astrid.producteev.ProducteevSyncActionExposer">
|
|
<intent-filter>
|
|
<action android:name="com.todoroo.astrid.REQUEST_SYNC_ACTIONS" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
</intent-filter>
|
|
</receiver>
|
|
|
|
<!-- rmilk -->
|
|
<receiver android:name="org.weloveastrid.rmilk.MilkFilterExposer">
|
|
<intent-filter>
|
|
<action android:name="com.todoroo.astrid.REQUEST_FILTERS" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
</intent-filter>
|
|
</receiver>
|
|
<receiver android:name="org.weloveastrid.rmilk.MilkDetailExposer">
|
|
<intent-filter>
|
|
<action android:name="com.todoroo.astrid.REQUEST_DETAILS" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
</intent-filter>
|
|
</receiver>
|
|
<activity android:name="org.weloveastrid.rmilk.MilkLoginActivity" />
|
|
<activity android:name="org.weloveastrid.rmilk.MilkPreferences"
|
|
android:theme="@android:style/Theme"
|
|
android:icon="@drawable/icon"
|
|
android:label="@string/rmilk_MPr_header">
|
|
<meta-data android:name="category"
|
|
android:resource="@string/SyP_label" />
|
|
<intent-filter>
|
|
<action android:name="com.todoroo.astrid.SETTINGS" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
</intent-filter>
|
|
</activity>
|
|
<service android:name="org.weloveastrid.rmilk.MilkBackgroundService"/>
|
|
<receiver android:name="org.weloveastrid.rmilk.MilkStartupReceiver">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.BOOT_COMPLETED" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
</intent-filter>
|
|
<intent-filter>
|
|
<action android:name="com.todoroo.astrid.STARTUP" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
</intent-filter>
|
|
</receiver>
|
|
<receiver android:name="org.weloveastrid.rmilk.MilkSyncActionExposer">
|
|
<intent-filter>
|
|
<action android:name="com.todoroo.astrid.REQUEST_SYNC_ACTIONS" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
</intent-filter>
|
|
</receiver>
|
|
|
|
<!-- other task actions -->
|
|
<receiver android:name="com.todoroo.astrid.core.LinkActionExposer">
|
|
<intent-filter>
|
|
<action android:name="com.todoroo.astrid.REQUEST_ACTIONS" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
</intent-filter>
|
|
</receiver>
|
|
|
|
<!-- Task Rabbit -->
|
|
<activity android:name="com.todoroo.astrid.taskrabbit.TaskRabbitMapActivity"></activity>
|
|
<activity android:name="com.todoroo.astrid.taskrabbit.TaskRabbitActivity"></activity><activity android:name="com.todoroo.astrid.welcome.tutorial.WelcomeWalkthrough"
|
|
android:windowSoftInputMode="stateHidden"
|
|
android:screenOrientation="portrait"></activity>
|
|
|
|
<!-- Uses Library -->
|
|
<uses-library android:name="com.google.android.maps" android:required="false" />
|
|
|
|
</application>
|
|
|
|
</manifest>
|