2014-07-03 07:48:39 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2015-04-13 18:34:10 +02:00
|
|
|
<manifest
|
|
|
|
package="org.mariotaku.twidere"
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:installLocation="auto">
|
2014-07-03 07:48:39 +02:00
|
|
|
|
2015-03-29 13:06:55 +02:00
|
|
|
<uses-sdk/>
|
2014-07-03 07:48:39 +02:00
|
|
|
|
|
|
|
<uses-feature
|
|
|
|
android:name="android.hardware.camera"
|
2015-03-29 13:06:55 +02:00
|
|
|
android:required="false"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
<uses-feature
|
|
|
|
android:name="android.hardware.location"
|
2015-03-29 13:06:55 +02:00
|
|
|
android:required="false"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
<uses-feature
|
|
|
|
android:name="android.hardware.location.gps"
|
2015-03-29 13:06:55 +02:00
|
|
|
android:required="false"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
<uses-feature
|
|
|
|
android:name="android.hardware.location.network"
|
2015-03-29 13:06:55 +02:00
|
|
|
android:required="false"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
<uses-feature
|
|
|
|
android:name="android.hardware.touchscreen"
|
2015-03-29 13:06:55 +02:00
|
|
|
android:required="false"/>
|
2015-03-14 16:11:20 +01:00
|
|
|
<uses-feature
|
|
|
|
android:name="android.hardware.nfc"
|
2015-03-29 13:06:55 +02:00
|
|
|
android:required="false"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
<uses-feature
|
|
|
|
android:glEsVersion="0x00020000"
|
2015-03-29 13:06:55 +02:00
|
|
|
android:required="true"/>
|
|
|
|
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
|
|
|
|
<uses-permission android:name="android.permission.INTERNET"/>
|
|
|
|
<uses-permission android:name="android.permission.VIBRATE"/>
|
|
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
|
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
|
|
|
|
<uses-permission android:name="android.permission.NFC"/>
|
|
|
|
<uses-permission android:name="org.mariotaku.twidere.permission.SHORTEN_STATUS"/>
|
|
|
|
<uses-permission android:name="org.mariotaku.twidere.permission.UPLOAD_MEDIA"/>
|
|
|
|
<uses-permission android:name="org.mariotaku.twidere.permission.SYNC_TIMELINE"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
|
|
|
|
<permission-group
|
|
|
|
android:name="org.mariotaku.twidere.permission.PERMISSION_GROUP"
|
2015-03-29 13:06:55 +02:00
|
|
|
android:label="@string/app_name"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
|
|
|
|
<permission
|
|
|
|
android:name="org.mariotaku.twidere.permission.SHORTEN_STATUS"
|
2015-03-24 16:40:47 +01:00
|
|
|
android:description="@string/permission_description_shorten_status"
|
2015-04-08 08:33:07 +02:00
|
|
|
android:label="@string/permission_label_shorten_status"
|
2015-03-29 13:06:55 +02:00
|
|
|
android:permissionGroup="org.mariotaku.twidere.permission.PERMISSION_GROUP"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
<permission
|
|
|
|
android:name="org.mariotaku.twidere.permission.UPLOAD_MEDIA"
|
2015-03-24 16:40:47 +01:00
|
|
|
android:description="@string/permission_description_upload_media"
|
2015-04-08 08:33:07 +02:00
|
|
|
android:label="@string/permission_label_upload_media"
|
2015-03-29 13:06:55 +02:00
|
|
|
android:permissionGroup="org.mariotaku.twidere.permission.PERMISSION_GROUP"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
<permission
|
|
|
|
android:name="org.mariotaku.twidere.permission.SYNC_TIMELINE"
|
2015-03-24 16:40:47 +01:00
|
|
|
android:description="@string/permission_description_sync_timeline"
|
2015-04-08 08:33:07 +02:00
|
|
|
android:label="@string/permission_label_sync_timeline"
|
2015-03-29 13:06:55 +02:00
|
|
|
android:permissionGroup="org.mariotaku.twidere.permission.PERMISSION_GROUP"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
|
|
|
|
<application
|
|
|
|
android:name=".app.TwidereApplication"
|
|
|
|
android:allowBackup="true"
|
2015-03-24 16:40:47 +01:00
|
|
|
android:backupAgent=".backup.TwidereBackupAgentHelper"
|
2014-07-03 07:48:39 +02:00
|
|
|
android:hardwareAccelerated="true"
|
2015-03-19 09:34:30 +01:00
|
|
|
android:icon="@mipmap/ic_launcher"
|
2014-07-03 07:48:39 +02:00
|
|
|
android:label="@string/app_name"
|
2015-03-29 13:06:55 +02:00
|
|
|
android:theme="@style/Theme.Blank">
|
2014-07-03 07:48:39 +02:00
|
|
|
<uses-library
|
|
|
|
android:name="com.sec.android.app.multiwindow"
|
2015-03-29 13:06:55 +02:00
|
|
|
android:required="false"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
|
|
|
|
<meta-data
|
|
|
|
android:name="com.google.android.backup.api_key"
|
2015-03-29 13:06:55 +02:00
|
|
|
android:value="AEdPqrEAAAAIKbKATV1AGbLB4kem3w8QaPVJSPVVumbMHxkfwA"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
<meta-data
|
|
|
|
android:name="com.sec.android.support.multiwindow"
|
2015-03-29 13:06:55 +02:00
|
|
|
android:value="true"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
<meta-data
|
|
|
|
android:name="com.sec.android.multiwindow.DEFAULT_SIZE_W"
|
2015-03-29 13:06:55 +02:00
|
|
|
android:value="480dp"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
<meta-data
|
|
|
|
android:name="com.sec.android.multiwindow.DEFAULT_SIZE_H"
|
2015-03-29 13:06:55 +02:00
|
|
|
android:value="640dp"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
<meta-data
|
|
|
|
android:name="com.sec.android.multiwindow.MINIMUM_SIZE_W"
|
2015-03-29 13:06:55 +02:00
|
|
|
android:value="240dp"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
<meta-data
|
|
|
|
android:name="com.sec.android.multiwindow.MINIMUM_SIZE_H"
|
2015-03-29 13:06:55 +02:00
|
|
|
android:value="320dp"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
<meta-data
|
|
|
|
android:name="override_tinted_status_bar_defaults"
|
2015-03-29 13:06:55 +02:00
|
|
|
android:value="true"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
|
|
|
|
<activity
|
|
|
|
android:name=".activity.MainActivity"
|
2015-03-19 09:34:30 +01:00
|
|
|
android:icon="@mipmap/ic_launcher"
|
2014-07-03 07:48:39 +02:00
|
|
|
android:label="@string/app_name"
|
|
|
|
android:launchMode="singleTop"
|
|
|
|
android:theme="@style/Theme.Launcher"
|
2015-03-29 13:06:55 +02:00
|
|
|
android:windowSoftInputMode="adjustNothing">
|
2014-07-03 07:48:39 +02:00
|
|
|
<intent-filter>
|
2015-03-29 13:06:55 +02:00
|
|
|
<action android:name="android.intent.action.MAIN"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
|
2015-03-29 13:06:55 +02:00
|
|
|
<category android:name="android.intent.category.LAUNCHER"/>
|
|
|
|
<category android:name="android.intent.category.MULTIWINDOW_LAUNCHER"/>
|
|
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
<activity
|
|
|
|
android:name=".activity.MainHondaJOJOActivity"
|
|
|
|
android:enabled="false"
|
2015-03-19 09:34:30 +01:00
|
|
|
android:icon="@mipmap/ic_launcher_hondajojo"
|
2014-07-03 07:48:39 +02:00
|
|
|
android:label="@string/app_name"
|
|
|
|
android:launchMode="singleTop"
|
|
|
|
android:theme="@style/Theme.Launcher"
|
2015-03-29 13:06:55 +02:00
|
|
|
android:windowSoftInputMode="adjustResize">
|
2014-07-03 07:48:39 +02:00
|
|
|
<intent-filter>
|
2015-03-29 13:06:55 +02:00
|
|
|
<action android:name="android.intent.action.MAIN"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
|
2015-03-29 13:06:55 +02:00
|
|
|
<category android:name="android.intent.category.LAUNCHER"/>
|
|
|
|
<category android:name="android.intent.category.MULTIWINDOW_LAUNCHER"/>
|
|
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
<activity
|
|
|
|
android:name=".activity.support.HomeActivity"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:launchMode="singleTop"
|
2015-03-29 13:06:55 +02:00
|
|
|
android:windowSoftInputMode="adjustResize">
|
2014-07-03 07:48:39 +02:00
|
|
|
<intent-filter>
|
2015-03-29 13:06:55 +02:00
|
|
|
<action android:name="org.mariotaku.twidere.HOME"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
|
2015-03-29 13:06:55 +02:00
|
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
</intent-filter>
|
|
|
|
<intent-filter>
|
2015-03-29 13:06:55 +02:00
|
|
|
<action android:name="android.intent.action.SEARCH"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
|
2015-03-29 13:06:55 +02:00
|
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
</intent-filter>
|
|
|
|
|
|
|
|
<meta-data
|
|
|
|
android:name="android.app.searchable"
|
2015-03-29 13:06:55 +02:00
|
|
|
android:resource="@xml/searchable"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
<meta-data
|
|
|
|
android:name="android.app.default_searchable"
|
2015-03-29 13:06:55 +02:00
|
|
|
android:value=".activity.support.HomeActivity"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
</activity>
|
|
|
|
<activity
|
|
|
|
android:name=".activity.support.ComposeActivity"
|
|
|
|
android:excludeFromRecents="true"
|
|
|
|
android:label="@string/compose"
|
|
|
|
android:launchMode="singleTop"
|
|
|
|
android:theme="@style/Theme.Blank.Dialog"
|
2015-03-29 13:06:55 +02:00
|
|
|
android:windowSoftInputMode="adjustResize">
|
|
|
|
<intent-filter android:label="@string/compose">
|
|
|
|
<action android:name="android.intent.action.MAIN"/>
|
|
|
|
<action android:name="org.mariotaku.twidere.COMPOSE"/>
|
|
|
|
<action android:name="org.mariotaku.twidere.REPLY"/>
|
|
|
|
<action android:name="org.mariotaku.twidere.QUOTE"/>
|
|
|
|
<action android:name="org.mariotaku.twidere.EDIT_DRAFT"/>
|
|
|
|
<action android:name="org.mariotaku.twidere.MENTION"/>
|
|
|
|
<action android:name="org.mariotaku.twidere.REPLY_MULTIPLE"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
|
2015-03-29 13:06:55 +02:00
|
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
</intent-filter>
|
2015-03-29 13:06:55 +02:00
|
|
|
<intent-filter android:label="@string/app_name">
|
|
|
|
<action android:name="android.intent.action.SEND"/>
|
|
|
|
<action android:name="android.intent.action.SEND_MULTIPLE"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
|
2015-03-29 13:06:55 +02:00
|
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
|
2015-03-29 13:06:55 +02:00
|
|
|
<data android:mimeType="image/*"/>
|
|
|
|
<data android:mimeType="text/plain"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
</intent-filter>
|
|
|
|
|
|
|
|
<meta-data
|
|
|
|
android:name="android.support.PARENT_ACTIVITY"
|
2015-03-29 13:06:55 +02:00
|
|
|
android:value=".activity.support.HomeActivity"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
</activity>
|
2015-01-06 16:46:07 +01:00
|
|
|
<activity
|
2015-01-10 16:17:02 +01:00
|
|
|
android:name=".activity.support.QuickSearchBarActivity"
|
2015-03-29 15:31:04 +02:00
|
|
|
android:label="@string/search"
|
2015-01-06 16:46:07 +01:00
|
|
|
android:launchMode="singleTop"
|
|
|
|
android:theme="@style/Theme.Blank.Dialog"
|
2015-03-29 13:06:55 +02:00
|
|
|
android:windowSoftInputMode="adjustResize">
|
2015-01-06 16:46:07 +01:00
|
|
|
<intent-filter>
|
2015-03-29 13:06:55 +02:00
|
|
|
<action android:name="org.mariotaku.twidere.GLOBAL_SEARCH"/>
|
2015-03-24 16:40:47 +01:00
|
|
|
|
2015-03-29 13:06:55 +02:00
|
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
2015-01-06 16:46:07 +01:00
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2014-07-03 07:48:39 +02:00
|
|
|
<activity
|
|
|
|
android:name=".activity.support.SignInActivity"
|
|
|
|
android:label="@string/sign_in"
|
2015-03-29 13:06:55 +02:00
|
|
|
android:windowSoftInputMode="adjustResize">
|
2014-07-03 07:48:39 +02:00
|
|
|
<intent-filter>
|
2015-03-29 13:06:55 +02:00
|
|
|
<action android:name="org.mariotaku.twidere.TWITTER_LOGIN"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
|
2015-03-29 13:06:55 +02:00
|
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
<activity
|
|
|
|
android:name=".activity.support.BrowserSignInActivity"
|
|
|
|
android:label="@string/browser_sign_in"
|
|
|
|
android:theme="@style/Theme.Blank.Dialog"
|
2015-03-29 13:06:55 +02:00
|
|
|
android:windowSoftInputMode="adjustResize">
|
2014-07-03 07:48:39 +02:00
|
|
|
<intent-filter>
|
2015-03-29 13:06:55 +02:00
|
|
|
<action android:name="org.mariotaku.twidere.TWITTER_BROWSER_LOGIN"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
|
2015-03-29 13:06:55 +02:00
|
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
<activity
|
|
|
|
android:name=".activity.SettingsActivity"
|
|
|
|
android:label="@string/settings"
|
|
|
|
android:theme="@style/Theme.Blank"
|
2015-03-29 13:06:55 +02:00
|
|
|
android:windowSoftInputMode="adjustResize">
|
2014-07-03 07:48:39 +02:00
|
|
|
<intent-filter>
|
2015-03-29 13:06:55 +02:00
|
|
|
<action android:name="android.intent.action.MANAGE_NETWORK_USAGE"/>
|
|
|
|
<action android:name="org.mariotaku.twidere.SETTINGS"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
|
2015-03-29 13:06:55 +02:00
|
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
</intent-filter>
|
|
|
|
|
|
|
|
<meta-data
|
|
|
|
android:name="android.support.PARENT_ACTIVITY"
|
2015-03-29 13:06:55 +02:00
|
|
|
android:value=".activity.support.HomeActivity"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
</activity>
|
|
|
|
<activity
|
|
|
|
android:name=".activity.FiltersActivity"
|
2015-03-29 13:06:55 +02:00
|
|
|
android:label="@string/filters">
|
2014-07-03 07:48:39 +02:00
|
|
|
<intent-filter>
|
2015-03-29 13:06:55 +02:00
|
|
|
<action android:name="org.mariotaku.twidere.FILTERS"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
|
2015-03-29 13:06:55 +02:00
|
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
</intent-filter>
|
|
|
|
|
|
|
|
<meta-data
|
|
|
|
android:name="android.support.PARENT_ACTIVITY"
|
2015-03-29 13:06:55 +02:00
|
|
|
android:value=".activity.support.HomeActivity"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
</activity>
|
|
|
|
<activity
|
|
|
|
android:name=".activity.support.APIEditorActivity"
|
|
|
|
android:label="@string/edit_api"
|
|
|
|
android:theme="@style/Theme.Blank.Dialog"
|
2015-03-29 13:06:55 +02:00
|
|
|
android:windowSoftInputMode="adjustResize"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
<activity
|
|
|
|
android:name=".activity.support.AccountSelectorActivity"
|
|
|
|
android:label="@string/select_account"
|
2015-03-29 13:06:55 +02:00
|
|
|
android:theme="@style/Theme.Blank.Dialog">
|
2014-07-03 07:48:39 +02:00
|
|
|
<intent-filter>
|
2015-03-29 13:06:55 +02:00
|
|
|
<action android:name="org.mariotaku.twidere.SELECT_ACCOUNT"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
|
2015-03-29 13:06:55 +02:00
|
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
<activity
|
|
|
|
android:name=".activity.support.BrowserActivity"
|
|
|
|
android:exported="false"
|
2015-03-29 13:06:55 +02:00
|
|
|
android:label="@string/browser">
|
2014-07-03 07:48:39 +02:00
|
|
|
<intent-filter>
|
2015-03-29 13:06:55 +02:00
|
|
|
<action android:name="org.mariotaku.twidere.VIEW_WEBPAGE"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
|
2015-03-29 13:06:55 +02:00
|
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
|
2015-03-29 13:06:55 +02:00
|
|
|
<data android:scheme="file"/>
|
|
|
|
<data android:scheme="http"/>
|
|
|
|
<data android:scheme="https"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
<activity
|
|
|
|
android:name=".activity.support.ColorPickerDialogActivity"
|
|
|
|
android:label="@string/set_color"
|
2015-03-29 13:06:55 +02:00
|
|
|
android:theme="@style/Theme.Twidere.Light.NoDisplay"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
<activity
|
2015-04-13 18:34:10 +02:00
|
|
|
android:theme="@style/Theme.Twidere.Light.DialogWhenLarge"
|
2014-07-03 07:48:39 +02:00
|
|
|
android:name=".activity.support.LinkHandlerActivity"
|
2015-03-29 13:06:55 +02:00
|
|
|
android:windowSoftInputMode="adjustResize">
|
2014-07-03 07:48:39 +02:00
|
|
|
<meta-data
|
|
|
|
android:name="android.support.PARENT_ACTIVITY"
|
2015-03-29 13:06:55 +02:00
|
|
|
android:value=".activity.support.HomeActivity"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
|
|
|
|
<intent-filter>
|
2015-03-29 13:06:55 +02:00
|
|
|
<action android:name="android.intent.action.VIEW"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
|
2015-03-29 13:06:55 +02:00
|
|
|
<category android:name="android.intent.category.BROWSABLE"/>
|
|
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
|
|
|
|
<data
|
|
|
|
android:host="user"
|
2015-03-29 13:06:55 +02:00
|
|
|
android:scheme="twidere"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
<data
|
|
|
|
android:host="users"
|
2015-03-29 13:06:55 +02:00
|
|
|
android:scheme="twidere"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
<data
|
|
|
|
android:host="user_timeline"
|
2015-03-29 13:06:55 +02:00
|
|
|
android:scheme="twidere"/>
|
2014-11-09 06:02:43 +01:00
|
|
|
<data
|
|
|
|
android:host="user_media_timeline"
|
2015-03-29 13:06:55 +02:00
|
|
|
android:scheme="twidere"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
<data
|
|
|
|
android:host="user_favorites"
|
2015-03-29 13:06:55 +02:00
|
|
|
android:scheme="twidere"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
<data
|
|
|
|
android:host="user_followers"
|
2015-03-29 13:06:55 +02:00
|
|
|
android:scheme="twidere"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
<data
|
|
|
|
android:host="user_friends"
|
2015-03-29 13:06:55 +02:00
|
|
|
android:scheme="twidere"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
<data
|
|
|
|
android:host="user_blocks"
|
2015-03-29 13:06:55 +02:00
|
|
|
android:scheme="twidere"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
<data
|
|
|
|
android:host="status"
|
2015-03-29 13:06:55 +02:00
|
|
|
android:scheme="twidere"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
<data
|
|
|
|
android:host="status_retweeters"
|
2015-03-29 13:06:55 +02:00
|
|
|
android:scheme="twidere"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
<data
|
|
|
|
android:host="status_favoriters"
|
2015-03-29 13:06:55 +02:00
|
|
|
android:scheme="twidere"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
<data
|
|
|
|
android:host="status_replies"
|
2015-03-29 13:06:55 +02:00
|
|
|
android:scheme="twidere"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
<data
|
|
|
|
android:host="statuses"
|
2015-03-29 13:06:55 +02:00
|
|
|
android:scheme="twidere"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
<data
|
|
|
|
android:host="direct_messages_conversation"
|
2015-03-29 13:06:55 +02:00
|
|
|
android:scheme="twidere"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
<data
|
|
|
|
android:host="user_list"
|
2015-03-29 13:06:55 +02:00
|
|
|
android:scheme="twidere"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
<data
|
|
|
|
android:host="user_lists"
|
2015-03-29 13:06:55 +02:00
|
|
|
android:scheme="twidere"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
<data
|
|
|
|
android:host="user_list_timeline"
|
2015-03-29 13:06:55 +02:00
|
|
|
android:scheme="twidere"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
<data
|
|
|
|
android:host="user_list_members"
|
2015-03-29 13:06:55 +02:00
|
|
|
android:scheme="twidere"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
<data
|
|
|
|
android:host="user_list_subscribers"
|
2015-03-29 13:06:55 +02:00
|
|
|
android:scheme="twidere"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
<data
|
|
|
|
android:host="user_list_memberships"
|
2015-03-29 13:06:55 +02:00
|
|
|
android:scheme="twidere"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
<data
|
|
|
|
android:host="saved_searches"
|
2015-03-29 13:06:55 +02:00
|
|
|
android:scheme="twidere"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
<data
|
|
|
|
android:host="user_mentions"
|
2015-03-29 13:06:55 +02:00
|
|
|
android:scheme="twidere"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
<data
|
|
|
|
android:host="incoming_friendships"
|
2015-03-29 13:06:55 +02:00
|
|
|
android:scheme="twidere"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
<data
|
|
|
|
android:host="search"
|
2015-03-29 13:06:55 +02:00
|
|
|
android:scheme="twidere"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
<data
|
|
|
|
android:host="mutes_users"
|
2015-03-29 13:06:55 +02:00
|
|
|
android:scheme="twidere"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
<activity
|
|
|
|
android:name=".activity.support.DraftsActivity"
|
|
|
|
android:exported="false"
|
|
|
|
android:label="@string/drafts"
|
2015-03-29 13:06:55 +02:00
|
|
|
android:launchMode="singleTop">
|
2014-07-03 07:48:39 +02:00
|
|
|
<intent-filter>
|
2015-03-29 13:06:55 +02:00
|
|
|
<action android:name="org.mariotaku.twidere.DRAFTS"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
|
2015-03-29 13:06:55 +02:00
|
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
</intent-filter>
|
|
|
|
|
|
|
|
<meta-data
|
|
|
|
android:name="android.support.PARENT_ACTIVITY"
|
2015-03-29 13:06:55 +02:00
|
|
|
android:value=".activity.support.HomeActivity"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
</activity>
|
2014-10-29 07:48:07 +01:00
|
|
|
<activity
|
|
|
|
android:name=".activity.support.AccountsManagerActivity"
|
|
|
|
android:exported="false"
|
|
|
|
android:label="@string/accounts"
|
2015-03-29 13:06:55 +02:00
|
|
|
android:launchMode="singleTop">
|
2014-10-29 07:48:07 +01:00
|
|
|
<intent-filter>
|
2015-03-29 13:06:55 +02:00
|
|
|
<action android:name="org.mariotaku.twidere.ACCOUNTS"/>
|
2014-10-29 07:48:07 +01:00
|
|
|
|
2015-03-29 13:06:55 +02:00
|
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
2014-10-29 07:48:07 +01:00
|
|
|
</intent-filter>
|
|
|
|
|
|
|
|
<meta-data
|
|
|
|
android:name="android.support.PARENT_ACTIVITY"
|
2015-03-29 13:06:55 +02:00
|
|
|
android:value=".activity.support.HomeActivity"/>
|
2014-10-29 07:48:07 +01:00
|
|
|
</activity>
|
2014-07-03 07:48:39 +02:00
|
|
|
<activity
|
2015-01-06 16:46:07 +01:00
|
|
|
android:name=".activity.support.MediaViewerActivity"
|
2014-07-03 07:48:39 +02:00
|
|
|
android:configChanges="keyboardHidden|orientation|screenSize"
|
|
|
|
android:hardwareAccelerated="true"
|
2015-02-17 14:48:55 +01:00
|
|
|
android:label="@string/media"
|
2014-07-03 07:48:39 +02:00
|
|
|
android:launchMode="singleTop"
|
2015-03-29 13:06:55 +02:00
|
|
|
android:theme="@style/Theme.Twidere.Viewer">
|
2014-07-03 07:48:39 +02:00
|
|
|
<intent-filter>
|
2015-03-29 13:06:55 +02:00
|
|
|
<action android:name="org.mariotaku.twidere.VIEW_MEDIA"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
|
2015-03-29 13:06:55 +02:00
|
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
|
|
|
<category android:name="android.intent.category.BROWSABLE"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
|
2015-03-29 13:06:55 +02:00
|
|
|
<data android:scheme="http"/>
|
|
|
|
<data android:scheme="https"/>
|
|
|
|
<data android:scheme="file"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
<activity
|
|
|
|
android:name=".activity.support.FileSelectorActivity"
|
|
|
|
android:exported="false"
|
|
|
|
android:label="@string/pick_file"
|
|
|
|
android:theme="@style/Theme.Twidere.Light.NoDisplay"
|
2015-03-29 13:06:55 +02:00
|
|
|
android:windowSoftInputMode="adjustResize">
|
2014-07-03 07:48:39 +02:00
|
|
|
<intent-filter>
|
2015-03-29 13:06:55 +02:00
|
|
|
<action android:name="org.mariotaku.twidere.PICK_FILE"/>
|
|
|
|
<action android:name="org.mariotaku.twidere.PICK_DIRECTORY"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
|
2015-03-29 13:06:55 +02:00
|
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
<activity
|
|
|
|
android:name=".activity.support.ImagePickerActivity"
|
|
|
|
android:exported="false"
|
|
|
|
android:theme="@style/Theme.Twidere.Light.NoDisplay"
|
2015-03-29 13:06:55 +02:00
|
|
|
android:windowSoftInputMode="adjustResize">
|
2014-07-03 07:48:39 +02:00
|
|
|
<intent-filter>
|
2015-03-29 13:06:55 +02:00
|
|
|
<action android:name="android.intent.action.MAIN"/>
|
|
|
|
<action android:name="org.mariotaku.twidere.PICK_IMAGE"/>
|
|
|
|
<action android:name="org.mariotaku.twidere.TAKE_PHOTO"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
|
2015-03-29 13:06:55 +02:00
|
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
<activity
|
|
|
|
android:name=".activity.support.UserProfileEditorActivity"
|
|
|
|
android:exported="false"
|
|
|
|
android:label="@string/edit_profile"
|
2015-03-29 13:06:55 +02:00
|
|
|
android:windowSoftInputMode="adjustResize">
|
2014-07-03 07:48:39 +02:00
|
|
|
<intent-filter>
|
2015-03-29 13:06:55 +02:00
|
|
|
<action android:name="org.mariotaku.twidere.EDIT_USER_PROFILE"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
|
2015-03-29 13:06:55 +02:00
|
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
<activity
|
|
|
|
android:name=".activity.CustomTabsActivity"
|
|
|
|
android:label="@string/tabs"
|
2015-03-29 13:06:55 +02:00
|
|
|
android:theme="@style/Theme.Blank"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
<activity
|
|
|
|
android:name=".activity.support.CustomTabEditorActivity"
|
|
|
|
android:exported="false"
|
|
|
|
android:label="@string/add_tab"
|
|
|
|
android:theme="@style/Theme.Blank.Dialog"
|
2015-03-29 13:06:55 +02:00
|
|
|
android:windowSoftInputMode="adjustResize">
|
2014-07-03 07:48:39 +02:00
|
|
|
<intent-filter>
|
2015-03-29 13:06:55 +02:00
|
|
|
<action android:name="org.mariotaku.twidere.ADD_TAB"/>
|
|
|
|
<action android:name="org.mariotaku.twidere.EDIT_TAB"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
|
2015-03-29 13:06:55 +02:00
|
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
<activity
|
|
|
|
android:name=".activity.CreateComposeShortcutActivity"
|
|
|
|
android:label="@string/compose"
|
2015-03-29 13:06:55 +02:00
|
|
|
android:theme="@style/Theme.Twidere.Dark.NoDisplay">
|
2014-07-03 07:48:39 +02:00
|
|
|
<intent-filter>
|
2015-03-29 13:06:55 +02:00
|
|
|
<action android:name="android.intent.action.CREATE_SHORTCUT"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
|
2015-03-29 13:06:55 +02:00
|
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
<activity
|
|
|
|
android:name=".activity.support.RequestPermissionsActivity"
|
|
|
|
android:label="@string/permissions_request"
|
2015-03-29 13:06:55 +02:00
|
|
|
android:theme="@style/Theme.Blank.Dialog">
|
2014-07-03 07:48:39 +02:00
|
|
|
<intent-filter>
|
2015-03-29 13:06:55 +02:00
|
|
|
<action android:name="org.mariotaku.twidere.REQUEST_PERMISSIONS"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
|
2015-03-29 13:06:55 +02:00
|
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
<activity
|
|
|
|
android:name=".activity.CameraCropActivity"
|
2015-03-29 13:06:55 +02:00
|
|
|
android:exported="false">
|
2014-07-03 07:48:39 +02:00
|
|
|
<intent-filter>
|
2015-03-29 13:06:55 +02:00
|
|
|
<action android:name="org.mariotaku.twidere.CAMERA_CROP"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
|
2015-03-29 13:06:55 +02:00
|
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
<activity
|
|
|
|
android:name=".activity.support.UserListSelectorActivity"
|
|
|
|
android:label="@string/select_user_list"
|
2015-03-29 13:06:55 +02:00
|
|
|
android:theme="@style/Theme.Blank.Dialog">
|
2014-07-03 07:48:39 +02:00
|
|
|
<intent-filter>
|
2015-03-29 13:06:55 +02:00
|
|
|
<action android:name="org.mariotaku.twidere.SELECT_USER"/>
|
|
|
|
<action android:name="org.mariotaku.twidere.SELECT_USER_LIST"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
|
2015-03-29 13:06:55 +02:00
|
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
<activity
|
|
|
|
android:name=".activity.SettingsWizardActivity"
|
|
|
|
android:label="@string/settings_wizard"
|
2015-03-29 13:06:55 +02:00
|
|
|
android:theme="@style/Theme.Twidere.Wizard"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
<activity
|
|
|
|
android:name=".activity.support.DataExportActivity"
|
|
|
|
android:label="@string/export_settings"
|
2015-03-29 13:06:55 +02:00
|
|
|
android:theme="@android:style/Theme.NoDisplay"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
<activity
|
|
|
|
android:name=".activity.support.DataImportActivity"
|
|
|
|
android:label="@string/import_settings"
|
2015-03-29 13:06:55 +02:00
|
|
|
android:theme="@android:style/Theme.NoDisplay"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
<activity
|
|
|
|
android:name=".activity.support.ActivityPickerActivity"
|
2015-03-29 13:06:55 +02:00
|
|
|
android:theme="@style/Theme.Blank.Dialog">
|
2014-07-03 07:48:39 +02:00
|
|
|
<intent-filter>
|
2015-03-29 13:06:55 +02:00
|
|
|
<action android:name="org.mariotaku.twidere.PICK_ACTIVITY"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
|
2015-03-29 13:06:55 +02:00
|
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
<activity
|
|
|
|
android:name=".activity.TwitterLinkHandlerActivity"
|
|
|
|
android:excludeFromRecents="true"
|
|
|
|
android:taskAffinity=":twidere_twitter_link_handler"
|
2015-03-29 13:06:55 +02:00
|
|
|
android:theme="@style/Theme.Launcher">
|
2014-07-03 07:48:39 +02:00
|
|
|
<intent-filter>
|
|
|
|
<data
|
|
|
|
android:host="twitter.com"
|
2015-03-29 13:06:55 +02:00
|
|
|
android:scheme="http"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
<data
|
|
|
|
android:host="twitter.com"
|
2015-03-29 13:06:55 +02:00
|
|
|
android:scheme="https"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
<data
|
|
|
|
android:host="www.twitter.com"
|
2015-03-29 13:06:55 +02:00
|
|
|
android:scheme="http"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
<data
|
|
|
|
android:host="www.twitter.com"
|
2015-03-29 13:06:55 +02:00
|
|
|
android:scheme="https"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
<data
|
|
|
|
android:host="mobile.twitter.com"
|
2015-03-29 13:06:55 +02:00
|
|
|
android:scheme="http"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
<data
|
|
|
|
android:host="mobile.twitter.com"
|
2015-03-29 13:06:55 +02:00
|
|
|
android:scheme="https"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
|
2015-03-29 13:06:55 +02:00
|
|
|
<action android:name="android.intent.action.VIEW"/>
|
|
|
|
<action android:name="android.nfc.action.NDEF_DISCOVERED"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
|
2015-03-29 13:06:55 +02:00
|
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
|
|
|
<category android:name="android.intent.category.BROWSABLE"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
<activity
|
|
|
|
android:name=".activity.AssistLauncherActivity"
|
|
|
|
android:excludeFromRecents="true"
|
|
|
|
android:taskAffinity=":twidere_assist_launcher"
|
2015-03-29 13:06:55 +02:00
|
|
|
android:theme="@style/Theme.Launcher">
|
2014-07-03 07:48:39 +02:00
|
|
|
<intent-filter>
|
2015-03-29 13:06:55 +02:00
|
|
|
<action android:name="android.intent.action.ASSIST"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
|
2015-03-29 13:06:55 +02:00
|
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
</intent-filter>
|
|
|
|
|
|
|
|
<meta-data
|
|
|
|
android:name="com.android.systemui.action_assist_icon"
|
2015-03-29 13:06:55 +02:00
|
|
|
android:resource="@drawable/ic_assist_twidere"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
</activity>
|
|
|
|
<activity
|
|
|
|
android:name=".activity.TestActivity"
|
2015-02-03 06:22:02 +01:00
|
|
|
android:enabled="false"
|
2015-01-24 19:07:32 +01:00
|
|
|
android:label="Twidere test"
|
2015-03-24 16:40:47 +01:00
|
|
|
android:launchMode="singleTop"
|
2015-03-29 13:06:55 +02:00
|
|
|
android:windowSoftInputMode="adjustResize">
|
2015-01-24 19:07:32 +01:00
|
|
|
<intent-filter>
|
2015-03-29 13:06:55 +02:00
|
|
|
<action android:name="android.intent.action.MAIN"/>
|
2015-03-24 16:40:47 +01:00
|
|
|
|
2015-03-29 13:06:55 +02:00
|
|
|
<category android:name="android.intent.category.LAUNCHER"/>
|
2015-01-24 19:07:32 +01:00
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2014-07-03 07:48:39 +02:00
|
|
|
<activity
|
|
|
|
android:name=".activity.NyanActivity"
|
|
|
|
android:launchMode="singleTop"
|
|
|
|
android:theme="@style/Theme.Nyan"
|
2015-03-29 13:06:55 +02:00
|
|
|
android:windowSoftInputMode="stateAlwaysHidden"/>
|
2015-03-24 16:40:47 +01:00
|
|
|
<activity
|
|
|
|
android:name=".activity.support.UsageStatisticsActivity"
|
2015-04-08 08:33:07 +02:00
|
|
|
android:label="@string/usage_statistics"
|
|
|
|
android:theme="@android:style/Theme.NoDisplay"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
|
|
|
|
<service
|
|
|
|
android:name=".service.RefreshService"
|
2015-04-01 22:13:42 +02:00
|
|
|
android:label="@string/label_refresh_service"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
<service
|
|
|
|
android:name=".service.BackgroundOperationService"
|
2015-03-29 13:06:55 +02:00
|
|
|
android:label="@string/label_background_operation_service"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
<service
|
2014-12-24 05:39:21 +01:00
|
|
|
android:name=".nyan.NyanWallpaperService"
|
2014-07-03 07:48:39 +02:00
|
|
|
android:enabled="false"
|
|
|
|
android:exported="true"
|
|
|
|
android:icon="@drawable/nyan_sakamoto_thumbnail"
|
|
|
|
android:label="@string/nyan_sakamoto"
|
|
|
|
android:permission="android.permission.BIND_WALLPAPER"
|
2015-03-29 13:06:55 +02:00
|
|
|
android:process=":wallpaper">
|
|
|
|
<intent-filter android:priority="1">
|
|
|
|
<action android:name="android.service.wallpaper.WallpaperService"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
</intent-filter>
|
|
|
|
|
|
|
|
<meta-data
|
|
|
|
android:name="android.service.wallpaper"
|
2015-03-29 13:06:55 +02:00
|
|
|
android:resource="@xml/nyan_wallpaper"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
</service>
|
|
|
|
<service
|
2014-12-24 05:39:21 +01:00
|
|
|
android:name=".nyan.NyanDaydreamService"
|
2014-07-03 07:48:39 +02:00
|
|
|
android:enabled="false"
|
|
|
|
android:exported="true"
|
|
|
|
android:icon="@drawable/nyan_sakamoto_thumbnail"
|
|
|
|
android:label="@string/nyan_sakamoto"
|
2015-03-29 13:06:55 +02:00
|
|
|
android:process=":daydream">
|
|
|
|
<intent-filter android:priority="1">
|
|
|
|
<action android:name="android.service.dreams.DreamService"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
</intent-filter>
|
|
|
|
</service>
|
|
|
|
|
|
|
|
<provider
|
|
|
|
android:name=".provider.TwidereDataProvider"
|
|
|
|
android:authorities="twidere"
|
|
|
|
android:exported="true"
|
|
|
|
android:grantUriPermissions="true"
|
2015-04-08 08:33:07 +02:00
|
|
|
android:label="@string/label_tweetstore_provider"
|
|
|
|
tools:ignore="ExportedContentProvider"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
<provider
|
|
|
|
android:name=".provider.TwidereCommandProvider"
|
|
|
|
android:authorities="twidere.command"
|
2015-04-08 08:33:07 +02:00
|
|
|
android:exported="true"
|
|
|
|
tools:ignore="ExportedContentProvider"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
<provider
|
|
|
|
android:name=".provider.RecentSearchProvider"
|
2015-04-08 08:33:07 +02:00
|
|
|
android:authorities="org.mariotaku.twidere.provider.SearchRecentSuggestions"
|
|
|
|
tools:ignore="ExportedContentProvider"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
|
2015-03-29 13:06:55 +02:00
|
|
|
<receiver android:name=".receiver.ConnectivityStateReceiver">
|
2014-07-03 07:48:39 +02:00
|
|
|
<intent-filter>
|
2015-03-29 13:06:55 +02:00
|
|
|
<action android:name="android.net.conn.CONNECTIVITY_CHANGE"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
2015-04-08 08:33:07 +02:00
|
|
|
<receiver
|
|
|
|
android:name=".receiver.NotificationReceiver"
|
|
|
|
android:exported="false">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="org.mariotaku.twidere.NOTIFICATION_DELETED"/>
|
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
2014-07-03 07:48:39 +02:00
|
|
|
<receiver
|
|
|
|
android:name=".receiver.SecretCodeBroadcastReceiver"
|
2015-03-29 13:06:55 +02:00
|
|
|
android:label="@string/twidere_test">
|
2014-07-03 07:48:39 +02:00
|
|
|
<intent-filter>
|
2015-03-29 13:06:55 +02:00
|
|
|
<action android:name="android.provider.Telephony.SECRET_CODE"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
|
|
|
|
<data
|
|
|
|
android:host="8943373"
|
2015-03-29 13:06:55 +02:00
|
|
|
android:scheme="android_secret_code"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
2015-04-01 22:13:42 +02:00
|
|
|
|
|
|
|
<!-- Begin third Party components -->
|
|
|
|
|
|
|
|
<service
|
|
|
|
android:name="edu.ucdavis.earlybird.UCDService"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
<receiver
|
|
|
|
android:name="edu.ucdavis.earlybird.UploadReceiver"
|
2015-03-29 13:06:55 +02:00
|
|
|
android:exported="false">
|
2014-07-03 07:48:39 +02:00
|
|
|
<intent-filter>
|
2015-03-29 13:06:55 +02:00
|
|
|
<action android:name="android.net.wifi.supplicant.CONNECTION_CHANGE"/>
|
|
|
|
<action android:name="android.intent.action.ACTION_POWER_CONNECTED"/>
|
|
|
|
<action android:name="android.intent.action.ACTION_POWER_DISCONNECTED"/>
|
|
|
|
<action android:name="edu.ucdavis.earlybird.UPLOAD_PROFILE"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
2015-04-01 22:13:42 +02:00
|
|
|
|
2015-03-24 16:40:47 +01:00
|
|
|
<!-- SPICE -->
|
2015-04-01 22:13:42 +02:00
|
|
|
<service
|
|
|
|
android:name="edu.tsinghua.spice.SpiceService"/>
|
2015-03-05 13:06:46 +01:00
|
|
|
<receiver
|
|
|
|
android:name="edu.tsinghua.spice.SpiceUploadReceiver"
|
2015-03-29 13:06:55 +02:00
|
|
|
android:exported="false">
|
2015-03-05 13:06:46 +01:00
|
|
|
<intent-filter>
|
2015-03-29 13:06:55 +02:00
|
|
|
<action android:name="android.net.wifi.supplicant.CONNECTION_CHANGE"/>
|
|
|
|
<action android:name="android.intent.action.ACTION_POWER_CONNECTED"/>
|
|
|
|
<action android:name="android.intent.action.ACTION_POWER_DISCONNECTED"/>
|
|
|
|
<action android:name="edu.tsinghua.spice.UPLOAD_PROFILE"/>
|
2015-03-05 13:06:46 +01:00
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
2015-03-24 16:40:47 +01:00
|
|
|
|
2015-04-01 22:13:42 +02:00
|
|
|
<!-- Begin third Party components -->
|
|
|
|
|
2014-07-03 07:48:39 +02:00
|
|
|
</application>
|
|
|
|
|
2015-03-24 16:40:47 +01:00
|
|
|
</manifest>
|