Format manifest

pull/46/head
Alex Baker 12 years ago
parent dc51647447
commit b47a92fd95

@ -1,5 +1,4 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?><!--
<!--
** Copyright (c) 2012 Todoroo Inc ** Copyright (c) 2012 Todoroo Inc
** **
** See the file "LICENSE" for the full license governing this code. ** See the file "LICENSE" for the full license governing this code.
@ -15,9 +14,9 @@
<!-- ================================================== Used Permissions = --> <!-- ================================================== Used Permissions = -->
<!-- for notifications --> <!-- for notifications -->
<uses-permission android:name="android.permission.VIBRATE"/> <uses-permission android:name="android.permission.VIBRATE" />
<!-- for synchronization --> <!-- for synchronization -->
<uses-permission android:name="android.permission.INTERNET"/> <uses-permission android:name="android.permission.INTERNET" />
<!-- for google calendar integration --> <!-- for google calendar integration -->
<uses-permission android:name="android.permission.WRITE_CALENDAR" /> <uses-permission android:name="android.permission.WRITE_CALENDAR" />
<uses-permission android:name="android.permission.READ_CALENDAR" /> <uses-permission android:name="android.permission.READ_CALENDAR" />
@ -33,48 +32,60 @@
<!-- for task sharing --> <!-- for task sharing -->
<uses-permission android:name="android.permission.READ_CONTACTS" /> <uses-permission android:name="android.permission.READ_CONTACTS" />
<!-- for missed call reminders --> <!-- for missed call reminders -->
<uses-permission android:name="android.permission.READ_PHONE_STATE"/> <uses-permission android:name="android.permission.READ_PHONE_STATE" />
<uses-permission android:name="android.permission.READ_CALL_LOG"/> <uses-permission android:name="android.permission.READ_CALL_LOG" />
<!-- required for ics --> <!-- required for ics -->
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/> <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
<uses-permission android:name="android.permission.RECORD_AUDIO" /> <uses-permission android:name="android.permission.RECORD_AUDIO" />
<!-- Used to initiate sync when device comes back online --> <!-- Used to initiate sync when device comes back online -->
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/> <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<!-- ============================================== Exported Permissions = --> <!-- ============================================== Exported Permissions = -->
<!-- for v2 tasks provider --> <!-- for v2 tasks provider -->
<permission android:name="org.tasks.permission.READ_TASKS" <permission
android:name="org.tasks.permission.READ_TASKS"
android:permissionGroup="android.permission-group.MESSAGES" android:permissionGroup="android.permission-group.MESSAGES"
android:protectionLevel="normal" android:protectionLevel="normal"
android:label="@string/read_permission_label" android:label="@string/read_permission_label"
android:description="@string/read_permission_desc"/> android:description="@string/read_permission_desc" />
<uses-permission android:name="org.tasks.permission.READ_TASKS"/>
<uses-permission android:name="org.tasks.permission.READ_TASKS" />
<!-- for reading data from add-ons or astrid via v3 content provider --> <!-- for reading data from add-ons or astrid via v3 content provider -->
<permission android:name="org.tasks.READ" <permission
android:name="org.tasks.READ"
android:description="@string/read_permission_desc" android:description="@string/read_permission_desc"
android:protectionLevel="normal" android:protectionLevel="normal"
android:label="@string/read_permission_label" /> android:label="@string/read_permission_label" />
<uses-permission android:name="org.tasks.READ" /> <uses-permission android:name="org.tasks.READ" />
<!-- for writing data to add-ons or astrid via v3 content provider --> <!-- for writing data to add-ons or astrid via v3 content provider -->
<permission android:name="org.tasks.WRITE" <permission
android:name="org.tasks.WRITE"
android:description="@string/write_permission_desc" android:description="@string/write_permission_desc"
android:protectionLevel="normal" android:protectionLevel="normal"
android:label="@string/write_permission_label" /> android:label="@string/write_permission_label" />
<uses-permission android:name="org.tasks.WRITE" /> <uses-permission android:name="org.tasks.WRITE" />
<!-- ========================================================== Metadata = --> <!-- ========================================================== Metadata = -->
<uses-sdk android:targetSdkVersion="17" <uses-sdk
android:minSdkVersion="7"/> android:targetSdkVersion="17"
<supports-screens android:xlargeScreens="true" android:largeScreens="true"/> android:minSdkVersion="7" />
<supports-screens
android:xlargeScreens="true"
android:largeScreens="true" />
<uses-feature android:name="android.hardware.touchscreen" android:required="false"/> <uses-feature
android:name="android.hardware.touchscreen"
android:required="false" />
<application android:icon="@drawable/icon" <application
android:icon="@drawable/icon"
android:label="@string/app_name" android:label="@string/app_name"
android:theme="@style/Theme" android:theme="@style/Theme"
android:name="greendroid.app.GDApplication" android:name="greendroid.app.GDApplication"
@ -84,7 +95,8 @@
<!-- ====================================================== Activities = --> <!-- ====================================================== Activities = -->
<!-- Activity that displays task list --> <!-- Activity that displays task list -->
<activity android:name="com.todoroo.astrid.activity.TaskListActivity" <activity
android:name="com.todoroo.astrid.activity.TaskListActivity"
android:windowSoftInputMode="stateHidden|adjustResize"> android:windowSoftInputMode="stateHidden|adjustResize">
<intent-filter> <intent-filter>
<action android:name="android.intent.action.MAIN" /> <action android:name="android.intent.action.MAIN" />
@ -98,27 +110,35 @@
<action android:name="android.intent.action.SEARCH" /> <action android:name="android.intent.action.SEARCH" />
<category android:name="android.intent.category.DEFAULT" /> <category android:name="android.intent.category.DEFAULT" />
</intent-filter> </intent-filter>
<meta-data android:name="android.app.searchable"
<meta-data
android:name="android.app.searchable"
android:resource="@xml/filter_list_searchable" /> android:resource="@xml/filter_list_searchable" />
</activity> </activity>
<!-- Activity launched from shortcut --> <!-- Activity launched from shortcut -->
<activity android:name="com.todoroo.astrid.activity.ShortcutActivity" <activity
android:name="com.todoroo.astrid.activity.ShortcutActivity"
android:clearTaskOnLaunch="true"> android:clearTaskOnLaunch="true">
<intent-filter> <intent-filter>
<action android:name="android.intent.action.MAIN" /> <action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.DEFAULT" /> <category android:name="android.intent.category.DEFAULT" />
</intent-filter> </intent-filter>
</activity> </activity>
<!-- Activity for selecting Android shortcut --> <!-- Activity for selecting Android shortcut -->
<activity android:name="com.todoroo.astrid.activity.FilterShortcutActivity" <activity
android:name="com.todoroo.astrid.activity.FilterShortcutActivity"
android:label="@string/FSA_label"> android:label="@string/FSA_label">
<intent-filter> <intent-filter>
<action android:name="android.intent.action.CREATE_SHORTCUT" /> <action android:name="android.intent.action.CREATE_SHORTCUT" />
<category android:name="android.intent.category.DEFAULT" /> <category android:name="android.intent.category.DEFAULT" />
</intent-filter> </intent-filter>
</activity> </activity>
<!-- Activity launched from ShareLink menu item --> <!-- Activity launched from ShareLink menu item -->
<activity android:name="com.todoroo.astrid.activity.ShareLinkActivity" <activity
android:name="com.todoroo.astrid.activity.ShareLinkActivity"
android:clearTaskOnLaunch="true"> android:clearTaskOnLaunch="true">
<intent-filter> <intent-filter>
<action android:name="android.intent.action.SEND" /> <action android:name="android.intent.action.SEND" />
@ -126,14 +146,10 @@
<data android:mimeType="text/plain" /> <data android:mimeType="text/plain" />
</intent-filter> </intent-filter>
</activity> </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 that creates or edits tasks -->
<activity android:name="com.todoroo.astrid.activity.TaskEditActivity" <activity
android:name="com.todoroo.astrid.activity.TaskEditActivity"
android:windowSoftInputMode="stateHidden"> android:windowSoftInputMode="stateHidden">
<intent-filter> <intent-filter>
<action android:name="android.intent.action.MAIN" /> <action android:name="android.intent.action.MAIN" />
@ -145,12 +161,17 @@
<data android:mimeType="vnd.android.cursor.item/task" /> <data android:mimeType="vnd.android.cursor.item/task" />
</intent-filter> </intent-filter>
</activity> </activity>
<!-- Activity that selects and installs add-ons --> <!-- Activity that selects and installs add-ons -->
<activity android:name="com.todoroo.astrid.activity.AddOnActivity" <activity
android:name="com.todoroo.astrid.activity.AddOnActivity"
android:windowSoftInputMode="stateHidden" /> android:windowSoftInputMode="stateHidden" />
<!-- Activity for preferences --> <!-- Activity for preferences -->
<activity android:name="com.todoroo.astrid.activity.EditPreferences" <activity
android:name="com.todoroo.astrid.activity.EditPreferences"
android:theme="@android:style/Theme" /> android:theme="@android:style/Theme" />
<!-- Activity that configures widget --> <!-- Activity that configures widget -->
<activity android:name="com.todoroo.astrid.widget.TasksWidget$ConfigActivity"> <activity android:name="com.todoroo.astrid.widget.TasksWidget$ConfigActivity">
<intent-filter> <intent-filter>
@ -158,19 +179,21 @@
</intent-filter> </intent-filter>
</activity> </activity>
<activity
<activity android:name="com.todoroo.astrid.service.UpdateScreenFlow" android:name="com.todoroo.astrid.service.UpdateScreenFlow"
android:screenOrientation="portrait" android:screenOrientation="portrait"
android:theme="@android:style/Theme.Dialog"/> android:theme="@android:style/Theme.Dialog" />
<activity android:name="com.todoroo.astrid.service.UpdateMessagePreference" <activity
android:name="com.todoroo.astrid.service.UpdateMessagePreference"
android:theme="@android:style/Theme" /> android:theme="@android:style/Theme" />
<activity android:name="com.todoroo.astrid.service.UpgradeService$UpgradeActivity" <activity
android:screenOrientation="portrait"/> android:name="com.todoroo.astrid.service.UpgradeService$UpgradeActivity"
android:screenOrientation="portrait" />
<activity android:name="com.todoroo.astrid.service.UpgradeService$UpgradeActivity" <activity
android:name="com.todoroo.astrid.service.UpgradeService$UpgradeActivity"
android:screenOrientation="portrait" android:screenOrientation="portrait"
android:theme="@android:style/Theme" /> android:theme="@android:style/Theme" />
@ -180,17 +203,19 @@
<receiver android:name="com.todoroo.astrid.reminders.Notifications$ShowNotificationReceiver"> <receiver android:name="com.todoroo.astrid.reminders.Notifications$ShowNotificationReceiver">
<intent-filter> <intent-filter>
<action android:name="org.tasks.IN_APP_NOTIFY"/> <action android:name="org.tasks.IN_APP_NOTIFY" />
</intent-filter> </intent-filter>
</receiver> </receiver>
<!-- widgets --> <!-- widgets -->
<receiver android:name="com.todoroo.astrid.widget.TasksWidget" <receiver
android:name="com.todoroo.astrid.widget.TasksWidget"
android:label="@string/widget_mini"> android:label="@string/widget_mini">
<intent-filter> <intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" /> <action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
</intent-filter> </intent-filter>
<meta-data android:name="android.appwidget.provider" <meta-data
android:name="android.appwidget.provider"
android:resource="@xml/widget_provider_info" /> android:resource="@xml/widget_provider_info" />
</receiver> </receiver>
@ -202,13 +227,13 @@
<receiver android:name="com.todoroo.astrid.calls.PhoneStateChangedReceiver"> <receiver android:name="com.todoroo.astrid.calls.PhoneStateChangedReceiver">
<intent-filter> <intent-filter>
<action android:name="android.intent.action.PHONE_STATE"/> <action android:name="android.intent.action.PHONE_STATE" />
</intent-filter> </intent-filter>
</receiver> </receiver>
<receiver android:name="com.todoroo.astrid.reminders.ReengagementReceiver"> <receiver android:name="com.todoroo.astrid.reminders.ReengagementReceiver">
<intent-filter> <intent-filter>
<action android:name="org.tasks.SHOW_REENGAGEMENT"/> <action android:name="org.tasks.SHOW_REENGAGEMENT" />
</intent-filter> </intent-filter>
</receiver> </receiver>
@ -218,25 +243,28 @@
<!-- ======================================================= Providers = --> <!-- ======================================================= Providers = -->
<provider android:name="com.todoroo.astrid.provider.Astrid2TaskProvider" <provider
android:name="com.todoroo.astrid.provider.Astrid2TaskProvider"
android:authorities="org.tasks.tasksprovider" android:authorities="org.tasks.tasksprovider"
android:multiprocess="true" android:multiprocess="true"
android:grantUriPermissions="true" android:grantUriPermissions="true"
android:readPermission="org.tasks.permission.READ_TASKS"/> android:readPermission="org.tasks.permission.READ_TASKS" />
<provider android:name="com.todoroo.astrid.provider.Astrid3ContentProvider" <provider
android:name="com.todoroo.astrid.provider.Astrid3ContentProvider"
android:authorities="org.tasks" android:authorities="org.tasks"
android:multiprocess="true" android:multiprocess="true"
android:grantUriPermissions="true" android:grantUriPermissions="true"
android:readPermission="org.tasks.READ" android:readPermission="org.tasks.READ"
android:writePermission="org.tasks.WRITE"/> android:writePermission="org.tasks.WRITE" />
<provider android:name="com.todoroo.astrid.provider.SqlContentProvider" <provider
android:name="com.todoroo.astrid.provider.SqlContentProvider"
android:authorities="org.tasks.private" android:authorities="org.tasks.private"
android:multiprocess="true" android:multiprocess="true"
android:grantUriPermissions="true" android:grantUriPermissions="true"
android:readPermission="org.tasks.READ" android:readPermission="org.tasks.READ"
android:writePermission="org.tasks.WRITE"/> android:writePermission="org.tasks.WRITE" />
<!-- ========================================================= Plugins = --> <!-- ========================================================= Plugins = -->
@ -247,29 +275,34 @@
<category android:name="android.intent.category.DEFAULT" /> <category android:name="android.intent.category.DEFAULT" />
</intent-filter> </intent-filter>
</receiver> </receiver>
<receiver android:name="com.todoroo.astrid.core.CoreFilterExposer"> <receiver android:name="com.todoroo.astrid.core.CoreFilterExposer">
<intent-filter android:priority="9000"> <intent-filter android:priority="9000">
<action android:name="org.tasks.REQUEST_FILTERS" /> <action android:name="org.tasks.REQUEST_FILTERS" />
<category android:name="android.intent.category.DEFAULT" /> <category android:name="android.intent.category.DEFAULT" />
</intent-filter> </intent-filter>
</receiver> </receiver>
<activity android:name="com.todoroo.astrid.core.DefaultsPreferences"
<activity
android:name="com.todoroo.astrid.core.DefaultsPreferences"
android:theme="@android:style/Theme" android:theme="@android:style/Theme"
android:label="@string/EPr_defaults_header"> android:label="@string/EPr_defaults_header">
<meta-data android:name="summary" <meta-data
android:name="summary"
android:resource="@string/EPr_defaults_summary" /> android:resource="@string/EPr_defaults_summary" />
<intent-filter> <intent-filter>
<action android:name="org.tasks.SETTINGS" /> <action android:name="org.tasks.SETTINGS" />
<category android:name="android.intent.category.DEFAULT" /> <category android:name="android.intent.category.DEFAULT" />
</intent-filter> </intent-filter>
</activity> </activity>
<activity android:name="com.todoroo.astrid.activity.BeastModePreferences"
android:theme="@android:style/Theme">
</activity>
<activity android:name="com.todoroo.astrid.calls.MissedCallActivity" <activity
android:theme="@android:style/Theme.Translucent.NoTitleBar"> android:name="com.todoroo.astrid.activity.BeastModePreferences"
</activity> android:theme="@android:style/Theme"/>
<activity
android:name="com.todoroo.astrid.calls.MissedCallActivity"
android:theme="@android:style/Theme.Translucent.NoTitleBar"/>
<!-- tags --> <!-- tags -->
<receiver android:name="com.todoroo.astrid.tags.TagsPlugin"> <receiver android:name="com.todoroo.astrid.tags.TagsPlugin">
@ -278,18 +311,21 @@
<category android:name="android.intent.category.DEFAULT" /> <category android:name="android.intent.category.DEFAULT" />
</intent-filter> </intent-filter>
</receiver> </receiver>
<receiver android:name="com.todoroo.astrid.tags.TagFilterExposer"> <receiver android:name="com.todoroo.astrid.tags.TagFilterExposer">
<intent-filter> <intent-filter>
<action android:name="org.tasks.REQUEST_FILTERS" /> <action android:name="org.tasks.REQUEST_FILTERS" />
<category android:name="android.intent.category.DEFAULT" /> <category android:name="android.intent.category.DEFAULT" />
</intent-filter> </intent-filter>
</receiver> </receiver>
<receiver android:name="com.todoroo.astrid.tags.TagCustomFilterCriteriaExposer"> <receiver android:name="com.todoroo.astrid.tags.TagCustomFilterCriteriaExposer">
<intent-filter> <intent-filter>
<action android:name="org.tasks.REQUEST_CUSTOM_FILTER_CRITERIA" /> <action android:name="org.tasks.REQUEST_CUSTOM_FILTER_CRITERIA" />
<category android:name="android.intent.category.DEFAULT" /> <category android:name="android.intent.category.DEFAULT" />
</intent-filter> </intent-filter>
</receiver> </receiver>
<receiver android:name="com.todoroo.astrid.tags.TagDetailExposer"> <receiver android:name="com.todoroo.astrid.tags.TagDetailExposer">
<intent-filter> <intent-filter>
<action android:name="org.tasks.REQUEST_DETAILS" /> <action android:name="org.tasks.REQUEST_DETAILS" />
@ -304,29 +340,38 @@
<category android:name="android.intent.category.DEFAULT" /> <category android:name="android.intent.category.DEFAULT" />
</intent-filter> </intent-filter>
</receiver> </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
<activity android:name="com.todoroo.astrid.tags.TagFilterExposer$DeleteTagActivity" android:theme="@style/Theme.FullTransparent" /> android:name="com.todoroo.astrid.core.CustomFilterActivity"
<activity android:name="com.todoroo.astrid.tags.TagFilterExposer$RenameTagActivity" android:theme="@style/Theme.FullTransparent" /> 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 --> <!-- People view -->
<receiver android:name="com.todoroo.astrid.people.PeopleFilterExposer"> <receiver android:name="com.todoroo.astrid.people.PeopleFilterExposer">
<intent-filter> <intent-filter>
<action android:name="org.tasks.REQUEST_PEOPLE_FILTERS"/> <action android:name="org.tasks.REQUEST_PEOPLE_FILTERS" />
<category android:name="android.intent.category.DEFAULT"/> <category android:name="android.intent.category.DEFAULT" />
</intent-filter> </intent-filter>
</receiver> </receiver>
<!-- Featured lists --> <!-- Featured lists -->
<receiver android:name="com.todoroo.astrid.tags.reusable.FeaturedListFilterExposer"> <receiver android:name="com.todoroo.astrid.tags.reusable.FeaturedListFilterExposer">
<intent-filter> <intent-filter>
<action android:name="org.tasks.REQUEST_FEATURED_LISTS"/> <action android:name="org.tasks.REQUEST_FEATURED_LISTS" />
<category android:name="android.intent.category.DEFAULT"/> <category android:name="android.intent.category.DEFAULT" />
</intent-filter> </intent-filter>
</receiver> </receiver>
<activity android:name="com.todoroo.astrid.tags.reusable.FeaturedListActivity"
android:windowSoftInputMode="stateHidden|adjustResize"/>
<!-- alarms --> <!-- alarms -->
<receiver android:name="com.todoroo.astrid.alarms.AlarmTaskRepeatListener"> <receiver android:name="com.todoroo.astrid.alarms.AlarmTaskRepeatListener">
@ -335,6 +380,7 @@
<category android:name="android.intent.category.DEFAULT" /> <category android:name="android.intent.category.DEFAULT" />
</intent-filter> </intent-filter>
</receiver> </receiver>
<receiver android:name="com.todoroo.astrid.alarms.AlarmDetailExposer"> <receiver android:name="com.todoroo.astrid.alarms.AlarmDetailExposer">
<intent-filter> <intent-filter>
<action android:name="org.tasks.REQUEST_DETAILS" /> <action android:name="org.tasks.REQUEST_DETAILS" />
@ -343,25 +389,23 @@
</receiver> </receiver>
<!-- actfm --> <!-- actfm -->
<activity android:name="com.todoroo.astrid.actfm.ActFmGoogleAuthActivity" <activity
android:theme="@style/Theme" android:configChanges="orientation|keyboardHidden"/> android:name="com.todoroo.astrid.actfm.ActFmGoogleAuthActivity"
<activity android:name="com.todoroo.astrid.actfm.TagViewWrapperActivity" android:theme="@style/Theme"
android:windowSoftInputMode="stateHidden|adjustResize" android:configChanges="orientation|keyboardHidden" />
android:theme="@style/Theme">
<intent-filter> <activity
<action android:name="android.intent.action.VIEW" /> android:name="com.todoroo.astrid.actfm.TagSettingsActivity"
<category android:name="android.intent.category.DEFAULT" /> android:windowSoftInputMode="stateHidden" />
</intent-filter>
</activity> <activity
<activity android:name="com.todoroo.astrid.actfm.TagCreateActivity" android:name="com.todoroo.astrid.actfm.TagSettingsActivityTablet"
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:windowSoftInputMode="stateHidden"
android:theme="@style/Theme.Dialog"/> android:theme="@style/Theme.Dialog" />
<activity android:name="com.todoroo.astrid.actfm.CommentsActivity"
android:windowSoftInputMode="stateHidden"/> <activity
android:name="com.todoroo.astrid.actfm.CommentsActivity"
android:windowSoftInputMode="stateHidden" />
<receiver android:name="com.todoroo.astrid.actfm.sync.ActFmSyncThread$NetworkStateChangedReceiver"> <receiver android:name="com.todoroo.astrid.actfm.sync.ActFmSyncThread$NetworkStateChangedReceiver">
<intent-filter> <intent-filter>
@ -370,7 +414,8 @@
</receiver> </receiver>
<!-- gtasks --> <!-- gtasks -->
<activity android:name="com.todoroo.astrid.gtasks.GtasksListFragment" <activity
android:name="com.todoroo.astrid.gtasks.GtasksListFragment"
android:windowSoftInputMode="stateHidden|adjustResize" android:windowSoftInputMode="stateHidden|adjustResize"
android:theme="@style/Theme"> android:theme="@style/Theme">
<intent-filter> <intent-filter>
@ -378,48 +423,61 @@
<category android:name="android.intent.category.DEFAULT" /> <category android:name="android.intent.category.DEFAULT" />
</intent-filter> </intent-filter>
</activity> </activity>
<activity android:name="com.todoroo.astrid.gtasks.auth.GtasksAuthTokenProvider"/>
<activity android:name="com.todoroo.astrid.gtasks.auth.GtasksLoginActivity" <activity
android:theme="@style/Theme" android:configChanges="orientation|keyboardHidden"/> android:name="com.todoroo.astrid.gtasks.auth.GtasksLoginActivity"
android:theme="@style/Theme"
android:configChanges="orientation|keyboardHidden" />
<receiver android:name="com.todoroo.astrid.gtasks.GtasksCustomFilterCriteriaExposer"> <receiver android:name="com.todoroo.astrid.gtasks.GtasksCustomFilterCriteriaExposer">
<intent-filter> <intent-filter>
<action android:name="org.tasks.REQUEST_CUSTOM_FILTER_CRITERIA" /> <action android:name="org.tasks.REQUEST_CUSTOM_FILTER_CRITERIA" />
<category android:name="android.intent.category.DEFAULT" /> <category android:name="android.intent.category.DEFAULT" />
</intent-filter> </intent-filter>
</receiver> </receiver>
<receiver android:name="com.todoroo.astrid.gtasks.GtasksFilterExposer"> <receiver android:name="com.todoroo.astrid.gtasks.GtasksFilterExposer">
<intent-filter> <intent-filter>
<action android:name="org.tasks.REQUEST_FILTERS" /> <action android:name="org.tasks.REQUEST_FILTERS" />
<category android:name="android.intent.category.DEFAULT" /> <category android:name="android.intent.category.DEFAULT" />
</intent-filter> </intent-filter>
</receiver> </receiver>
<activity android:name="com.todoroo.astrid.gtasks.GtasksListAdder"
android:theme="@android:style/Theme.Dialog"/> <activity
android:name="com.todoroo.astrid.gtasks.GtasksListAdder"
android:theme="@android:style/Theme.Dialog" />
<receiver android:name="com.todoroo.astrid.gtasks.GtasksDetailExposer"> <receiver android:name="com.todoroo.astrid.gtasks.GtasksDetailExposer">
<intent-filter> <intent-filter>
<action android:name="org.tasks.REQUEST_DETAILS" /> <action android:name="org.tasks.REQUEST_DETAILS" />
<category android:name="android.intent.category.DEFAULT" /> <category android:name="android.intent.category.DEFAULT" />
</intent-filter> </intent-filter>
</receiver> </receiver>
<activity android:name="com.todoroo.astrid.gtasks.GtasksPreferences"
<activity
android:name="com.todoroo.astrid.gtasks.GtasksPreferences"
android:theme="@android:style/Theme" android:theme="@android:style/Theme"
android:label="@string/gtasks_GPr_header" android:label="@string/gtasks_GPr_header"
android:screenOrientation="portrait"> android:screenOrientation="portrait">
<meta-data android:name="category" <meta-data
android:name="category"
android:resource="@string/SyP_label" /> android:resource="@string/SyP_label" />
<meta-data android:name="syncAction" <meta-data
android:name="syncAction"
android:value="true" /> android:value="true" />
<intent-filter> <intent-filter>
<action android:name="org.tasks.SETTINGS" /> <action android:name="org.tasks.SETTINGS" />
<category android:name="android.intent.category.DEFAULT" /> <category android:name="android.intent.category.DEFAULT" />
</intent-filter> </intent-filter>
</activity> </activity>
<service android:name="com.todoroo.astrid.gtasks.GtasksBackgroundService"> <service android:name="com.todoroo.astrid.gtasks.GtasksBackgroundService">
<intent-filter> <intent-filter>
<action android:name="org.tasks.gtasks.SYNC" /> <action android:name="org.tasks.gtasks.SYNC" />
<category android:name="android.intent.category.DEFAULT" /> <category android:name="android.intent.category.DEFAULT" />
</intent-filter> </intent-filter>
</service> </service>
<receiver android:name="com.todoroo.astrid.gtasks.GtasksStartupReceiver"> <receiver android:name="com.todoroo.astrid.gtasks.GtasksStartupReceiver">
<intent-filter> <intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" /> <action android:name="android.intent.action.BOOT_COMPLETED" />
@ -434,12 +492,14 @@
<category android:name="android.intent.category.DEFAULT" /> <category android:name="android.intent.category.DEFAULT" />
</intent-filter> </intent-filter>
</receiver> </receiver>
<receiver android:name="com.todoroo.astrid.repeats.RepeatTaskCompleteListener"> <receiver android:name="com.todoroo.astrid.repeats.RepeatTaskCompleteListener">
<intent-filter android:priority="1"> <intent-filter android:priority="1">
<action android:name="org.tasks.TASK_COMPLETED" /> <action android:name="org.tasks.TASK_COMPLETED" />
<category android:name="android.intent.category.DEFAULT" /> <category android:name="android.intent.category.DEFAULT" />
</intent-filter> </intent-filter>
</receiver> </receiver>
<receiver android:name="com.todoroo.astrid.repeats.RepeatDetailExposer"> <receiver android:name="com.todoroo.astrid.repeats.RepeatDetailExposer">
<intent-filter> <intent-filter>
<action android:name="org.tasks.REQUEST_DETAILS" /> <action android:name="org.tasks.REQUEST_DETAILS" />
@ -461,26 +521,28 @@
<category android:name="android.intent.category.DEFAULT" /> <category android:name="android.intent.category.DEFAULT" />
</intent-filter> </intent-filter>
<intent-filter> <intent-filter>
<action android:name="org.tasks.SCHEDULE_CAL_REMINDERS"/> <action android:name="org.tasks.SCHEDULE_CAL_REMINDERS" />
<category android:name="android.intent.category.DEFAULT" /> <category android:name="android.intent.category.DEFAULT" />
</intent-filter> </intent-filter>
</receiver> </receiver>
<activity android:name="com.todoroo.astrid.gcal.CalendarReminderActivity" <activity
android:theme="@android:style/Theme.Translucent.NoTitleBar"> android:name="com.todoroo.astrid.gcal.CalendarReminderActivity"
</activity> android:theme="@android:style/Theme.Translucent.NoTitleBar"/>
<activity android:name="com.todoroo.astrid.gcal.CalendarAlarmListCreator" <activity
android:theme="@android:style/Theme.Translucent.NoTitleBar"> android:name="com.todoroo.astrid.gcal.CalendarAlarmListCreator"
</activity> android:theme="@android:style/Theme.Translucent.NoTitleBar"/>
<receiver android:name="com.todoroo.astrid.gcal.CalendarAlarmReceiver" /> <receiver android:name="com.todoroo.astrid.gcal.CalendarAlarmReceiver" />
<!-- old tasks --> <!-- old tasks -->
<activity android:name="com.todoroo.astrid.core.OldTaskPreferences" <activity
android:name="com.todoroo.astrid.core.OldTaskPreferences"
android:theme="@android:style/Theme" android:theme="@android:style/Theme"
android:label="@string/EPr_manage_header"> android:label="@string/EPr_manage_header">
<meta-data android:name="category" <meta-data
android:name="category"
android:resource="@string/SyP_label" /> android:resource="@string/SyP_label" />
<intent-filter> <intent-filter>
<action android:name="org.tasks.SETTINGS" /> <action android:name="org.tasks.SETTINGS" />
@ -489,19 +551,21 @@
</activity> </activity>
<!-- backup --> <!-- backup -->
<service android:name="com.todoroo.astrid.backup.BackupService"/> <service android:name="com.todoroo.astrid.backup.BackupService" />
<activity android:name="com.todoroo.astrid.backup.BackupActivity"
android:theme="@style/Theme.Dialog" /> <activity
<activity android:name="com.todoroo.astrid.backup.BackupPreferences" android:name="com.todoroo.astrid.backup.BackupPreferences"
android:theme="@android:style/Theme" android:theme="@android:style/Theme"
android:label="@string/backup_BPr_header"> android:label="@string/backup_BPr_header">
<meta-data android:name="category" <meta-data
android:name="category"
android:resource="@string/SyP_label" /> android:resource="@string/SyP_label" />
<intent-filter> <intent-filter>
<action android:name="org.tasks.SETTINGS" /> <action android:name="org.tasks.SETTINGS" />
<category android:name="android.intent.category.DEFAULT" /> <category android:name="android.intent.category.DEFAULT" />
</intent-filter> </intent-filter>
</activity> </activity>
<receiver android:name="com.todoroo.astrid.backup.BackupStartupReceiver"> <receiver android:name="com.todoroo.astrid.backup.BackupStartupReceiver">
<intent-filter> <intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" /> <action android:name="android.intent.action.BOOT_COMPLETED" />
@ -510,12 +574,13 @@
</receiver> </receiver>
<!-- premium --> <!-- premium -->
<activity android:name="com.todoroo.astrid.files.AACRecordingActivity" <activity
android:name="com.todoroo.astrid.files.AACRecordingActivity"
android:configChanges="orientation|screenSize" android:configChanges="orientation|screenSize"
android:screenOrientation="portrait" android:screenOrientation="portrait"
android:theme="@android:style/Theme.Translucent.NoTitleBar"/> android:theme="@android:style/Theme.Translucent.NoTitleBar" />
<activity android:name="com.todoroo.astrid.files.FileExplore"/> <activity android:name="com.todoroo.astrid.files.FileExplore" />
<!-- notes --> <!-- notes -->
<receiver android:name="com.todoroo.astrid.notes.NotesDetailExposer"> <receiver android:name="com.todoroo.astrid.notes.NotesDetailExposer">
@ -531,6 +596,7 @@
<category android:name="android.intent.category.DEFAULT" /> <category android:name="android.intent.category.DEFAULT" />
</intent-filter> </intent-filter>
</receiver> </receiver>
<receiver android:name="com.todoroo.astrid.timers.TimerTaskCompleteListener"> <receiver android:name="com.todoroo.astrid.timers.TimerTaskCompleteListener">
<intent-filter> <intent-filter>
<action android:name="org.tasks.TASK_COMPLETED" /> <action android:name="org.tasks.TASK_COMPLETED" />
@ -539,28 +605,27 @@
</receiver> </receiver>
<!-- reminders --> <!-- reminders -->
<activity android:name="com.todoroo.astrid.reminders.ReminderPreferences" <activity
android:name="com.todoroo.astrid.reminders.ReminderPreferences"
android:theme="@android:style/Theme" android:theme="@android:style/Theme"
android:label="@string/rmd_EPr_alerts_header"> android:label="@string/rmd_EPr_alerts_header">
<meta-data android:name="summary" <meta-data
android:name="summary"
android:resource="@string/rmd_EPr_alerts_summary" /> android:resource="@string/rmd_EPr_alerts_summary" />
<intent-filter> <intent-filter>
<action android:name="org.tasks.SETTINGS" /> <action android:name="org.tasks.SETTINGS" />
<category android:name="android.intent.category.DEFAULT" /> <category android:name="android.intent.category.DEFAULT" />
</intent-filter> </intent-filter>
</activity> </activity>
<receiver android:name="com.todoroo.astrid.reminders.ReminderStartupReceiver"> <receiver android:name="com.todoroo.astrid.reminders.ReminderStartupReceiver">
<intent-filter> <intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" /> <action android:name="android.intent.action.BOOT_COMPLETED" />
<category android:name="android.intent.category.DEFAULT" /> <category android:name="android.intent.category.DEFAULT" />
</intent-filter> </intent-filter>
</receiver> </receiver>
<activity android:name="com.todoroo.astrid.reminders.NotificationWrapperActivity"
android:launchMode="singleTask" <service android:name="com.todoroo.astrid.reminders.ReminderSchedulingService" />
android:finishOnTaskLaunch="true"
android:clearTaskOnLaunch="true">
</activity>
<service android:name="com.todoroo.astrid.reminders.ReminderSchedulingService"/>
<!-- other task actions --> <!-- other task actions -->
<receiver android:name="com.todoroo.astrid.core.LinkActionExposer"> <receiver android:name="com.todoroo.astrid.core.LinkActionExposer">
@ -571,7 +636,9 @@
</receiver> </receiver>
<!-- Uses Library --> <!-- Uses Library -->
<uses-library android:name="com.google.android.maps" android:required="false" /> <uses-library
android:name="com.google.android.maps"
android:required="false" />
</application> </application>

Loading…
Cancel
Save