Twidere-App-Android-Twitter.../twidere/src/main/AndroidManifest.xml

580 lines
25 KiB
XML
Raw Normal View History

2014-07-03 07:48:39 +02:00
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="org.mariotaku.twidere"
android:installLocation="auto" >
2014-07-03 07:48:39 +02:00
<uses-sdk />
2014-07-03 07:48:39 +02:00
<uses-feature
android:name="android.hardware.camera"
android:required="false" />
2014-07-03 07:48:39 +02:00
<uses-feature
android:name="android.hardware.location"
android:required="false" />
2014-07-03 07:48:39 +02:00
<uses-feature
android:name="android.hardware.location.gps"
android:required="false" />
2014-07-03 07:48:39 +02:00
<uses-feature
android:name="android.hardware.location.network"
android:required="false" />
2014-07-03 07:48:39 +02:00
<uses-feature
android:name="android.hardware.touchscreen"
android:required="false" />
<uses-feature
android:name="android.hardware.nfc"
android:required="false" />
2014-07-03 07:48:39 +02:00
<uses-feature
android:glEsVersion="0x00020000"
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" />
2016-02-29 01:24:10 +01:00
<uses-permission
android:name="android.permission.READ_PHONE_STATE"
tools:node="remove" />
2016-02-29 01:24:10 +01:00
2014-07-03 07:48:39 +02:00
<permission-group
android:name="org.mariotaku.twidere.permission.PERMISSION_GROUP"
android:label="@string/app_name" />
2014-07-03 07:48:39 +02:00
<permission
android:name="org.mariotaku.twidere.permission.SHORTEN_STATUS"
android:description="@string/permission_description_shorten_status"
android:label="@string/permission_label_shorten_status"
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"
android:description="@string/permission_description_upload_media"
android:label="@string/permission_label_upload_media"
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"
android:description="@string/permission_description_sync_timeline"
android:label="@string/permission_label_sync_timeline"
android:permissionGroup="org.mariotaku.twidere.permission.PERMISSION_GROUP" />
2014-07-03 07:48:39 +02:00
<application
android:name=".app.TwidereApplication"
android:allowBackup="true"
android:backupAgent=".backup.TwidereBackupAgentHelper"
android:description="@string/app_description"
android:fullBackupContent="true"
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"
android:supportsRtl="true"
2016-03-15 05:40:02 +01:00
android:theme="@style/Theme.Twidere.NoActionBar"
tools:ignore="UnusedAttribute" >
2014-07-03 07:48:39 +02:00
<uses-library
android:name="com.sec.android.app.multiwindow"
android:required="false" />
2014-07-03 07:48:39 +02:00
2015-12-29 08:26:52 +01:00
<meta-data
android:name="io.fabric.ApiKey"
android:value="dc4ee756d3b705e00011782f1426fc8656ad3bd9" />
2014-07-03 07:48:39 +02:00
<meta-data
android:name="com.google.android.backup.api_key"
android:value="AEdPqrEAAAAIKbKATV1AGbLB4kem3w8QaPVJSPVVumbMHxkfwA" />
2014-07-03 07:48:39 +02:00
<meta-data
android:name="com.sec.android.support.multiwindow"
android:value="true" />
2014-07-03 07:48:39 +02:00
<meta-data
android:name="com.sec.android.multiwindow.DEFAULT_SIZE_W"
android:value="480dp" />
2014-07-03 07:48:39 +02:00
<meta-data
android:name="com.sec.android.multiwindow.DEFAULT_SIZE_H"
android:value="640dp" />
2014-07-03 07:48:39 +02:00
<meta-data
android:name="com.sec.android.multiwindow.MINIMUM_SIZE_W"
android:value="240dp" />
2014-07-03 07:48:39 +02:00
<meta-data
android:name="com.sec.android.multiwindow.MINIMUM_SIZE_H"
android:value="320dp" />
2014-07-03 07:48:39 +02:00
<meta-data
android:name="override_tinted_status_bar_defaults"
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"
2016-03-01 06:37:56 +01:00
android:theme="@style/Theme.Twidere.NoActionBar"
android:windowSoftInputMode="adjustNothing" >
2014-07-03 07:48:39 +02:00
<intent-filter>
<action android:name="android.intent.action.MAIN" />
2014-07-03 07:48:39 +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"
2016-03-01 06:37:56 +01:00
android:theme="@style/Theme.Twidere.NoActionBar"
android:windowSoftInputMode="adjustResize" >
2014-07-03 07:48:39 +02:00
<intent-filter>
<action android:name="android.intent.action.MAIN" />
2014-07-03 07:48:39 +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
2016-03-14 09:17:46 +01:00
android:name=".activity.HomeActivity"
2014-07-03 07:48:39 +02:00
android:label="@string/app_name"
android:launchMode="singleTop"
2016-03-01 06:37:56 +01:00
android:theme="@style/Theme.Twidere.NoActionBar"
android:windowSoftInputMode="adjustResize" >
2014-07-03 07:48:39 +02:00
<intent-filter>
<action android:name="org.mariotaku.twidere.HOME" />
2014-07-03 07:48:39 +02:00
<category android:name="android.intent.category.DEFAULT" />
2014-07-03 07:48:39 +02:00
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.SEARCH" />
2014-07-03 07:48:39 +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"
android:resource="@xml/searchable" />
2014-07-03 07:48:39 +02:00
<meta-data
android:name="android.app.default_searchable"
android:value=".activity.support.HomeActivity" />
2014-07-03 07:48:39 +02:00
</activity>
<activity
2016-03-14 09:17:46 +01:00
android:name=".activity.ComposeActivity"
2014-07-03 07:48:39 +02:00
android:excludeFromRecents="true"
android:label="@string/compose"
android:launchMode="singleTop"
2016-03-14 09:17:46 +01:00
android:parentActivityName=".activity.HomeActivity"
2016-03-01 06:37:56 +01:00
android:theme="@style/Theme.Twidere.Compose"
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" />
<category android:name="android.intent.category.DEFAULT" />
2014-07-03 07:48:39 +02:00
</intent-filter>
<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
<category android:name="android.intent.category.DEFAULT" />
2014-07-03 07:48:39 +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"
android:value=".activity.HomeActivity" />
2014-07-03 07:48:39 +02:00
</activity>
<activity
2016-03-14 09:17:46 +01:00
android:name=".activity.QuickSearchBarActivity"
2015-03-29 15:31:04 +02:00
android:label="@string/search"
android:launchMode="singleTop"
2016-03-01 06:37:56 +01:00
android:theme="@style/Theme.Twidere.QuickSearchBar"
android:windowSoftInputMode="adjustResize" >
<intent-filter>
<action android:name="org.mariotaku.twidere.GLOBAL_SEARCH" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
2014-07-03 07:48:39 +02:00
<activity
2016-03-14 09:17:46 +01:00
android:name=".activity.SignInActivity"
2014-07-03 07:48:39 +02:00
android:label="@string/sign_in"
2016-03-16 17:43:08 +01:00
android:theme="@style/Theme.Twidere"
android:windowSoftInputMode="adjustResize" >
2014-07-03 07:48:39 +02:00
<intent-filter>
<action android:name="org.mariotaku.twidere.TWITTER_LOGIN" />
2014-07-03 07:48:39 +02:00
<category android:name="android.intent.category.DEFAULT" />
2014-07-03 07:48:39 +02:00
</intent-filter>
</activity>
<activity
2016-03-14 09:17:46 +01:00
android:name=".activity.BrowserSignInActivity"
2014-07-03 07:48:39 +02:00
android:label="@string/browser_sign_in"
2016-03-01 06:37:56 +01:00
android:theme="@style/Theme.Twidere"
android:windowSoftInputMode="adjustResize" >
2014-07-03 07:48:39 +02:00
<intent-filter>
<action android:name="org.mariotaku.twidere.TWITTER_BROWSER_LOGIN" />
2014-07-03 07:48:39 +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"
2016-03-14 09:17:46 +01:00
android:parentActivityName=".activity.HomeActivity"
2016-03-12 15:20:56 +01:00
android:theme="@style/Theme.Twidere"
android:windowSoftInputMode="adjustResize" >
2014-07-03 07:48:39 +02:00
<intent-filter>
<action android:name="android.intent.action.MANAGE_NETWORK_USAGE" />
<action android:name="org.mariotaku.twidere.SETTINGS" />
2014-07-03 07:48:39 +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"
android:value=".activity.HomeActivity" />
2014-07-03 07:48:39 +02:00
</activity>
<activity
2016-03-14 09:17:46 +01:00
android:name=".activity.APIEditorActivity"
2014-07-03 07:48:39 +02:00
android:label="@string/edit_api"
2016-03-01 06:37:56 +01:00
android:theme="@style/Theme.Twidere.Dialog"
android:windowSoftInputMode="adjustResize" />
2014-07-03 07:48:39 +02:00
<activity
2016-03-14 09:17:46 +01:00
android:name=".activity.AccountSelectorActivity"
2014-07-03 07:48:39 +02:00
android:label="@string/select_account"
android:theme="@style/Theme.Twidere.Dialog" >
2014-07-03 07:48:39 +02:00
<intent-filter>
<action android:name="org.mariotaku.twidere.SELECT_ACCOUNT" />
2014-07-03 07:48:39 +02:00
<category android:name="android.intent.category.DEFAULT" />
2014-07-03 07:48:39 +02:00
</intent-filter>
</activity>
<activity
2016-03-14 09:17:46 +01:00
android:name=".activity.ColorPickerDialogActivity"
2014-07-03 07:48:39 +02:00
android:label="@string/set_color"
android:theme="@style/Theme.Twidere.NoDisplay" />
2014-07-03 07:48:39 +02:00
<activity
2016-03-14 09:17:46 +01:00
android:name=".activity.LinkHandlerActivity"
android:parentActivityName=".activity.HomeActivity"
android:theme="@style/Theme.Twidere"
android:windowSoftInputMode="adjustResize" >
2014-07-03 07:48:39 +02:00
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value=".activity.HomeActivity" />
2014-07-03 07:48:39 +02:00
<intent-filter>
<action android:name="android.intent.action.VIEW" />
2014-07-03 07:48:39 +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:scheme="twidere" />
</intent-filter>
</activity>
2014-07-03 07:48:39 +02:00
<activity
2016-03-14 09:17:46 +01:00
android:name=".activity.MediaViewerActivity"
2014-07-03 07:48:39 +02:00
android:configChanges="keyboardHidden|orientation|screenSize"
2015-02-17 14:48:55 +01:00
android:label="@string/media"
2016-02-19 16:21:26 +01:00
android:theme="@style/Theme.Twidere.Viewer"
android:windowSoftInputMode="adjustPan" >
2016-02-19 16:21:26 +01:00
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value=".activity.HomeActivity" />
2016-02-19 16:21:26 +01:00
2014-07-03 07:48:39 +02:00
<intent-filter>
<action android:name="org.mariotaku.twidere.VIEW_MEDIA" />
2014-07-03 07:48:39 +02:00
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
2014-07-03 07:48:39 +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
2016-03-14 09:17:46 +01:00
android:name=".activity.FileSelectorActivity"
2014-07-03 07:48:39 +02:00
android:exported="false"
android:label="@string/pick_file"
2016-03-01 06:37:56 +01:00
android:theme="@style/Theme.Twidere.NoDisplay"
android:windowSoftInputMode="adjustResize" >
2014-07-03 07:48:39 +02:00
<intent-filter>
<action android:name="org.mariotaku.twidere.PICK_FILE" />
<action android:name="org.mariotaku.twidere.PICK_DIRECTORY" />
2014-07-03 07:48:39 +02:00
<category android:name="android.intent.category.DEFAULT" />
2014-07-03 07:48:39 +02:00
</intent-filter>
</activity>
<activity
2016-03-14 09:17:46 +01:00
android:name=".activity.ThemedImagePickerActivity"
2014-07-03 07:48:39 +02:00
android:exported="false"
2016-03-01 06:37:56 +01:00
android:theme="@style/Theme.Twidere.NoDisplay"
android:windowSoftInputMode="adjustResize" >
2014-07-03 07:48:39 +02:00
<intent-filter>
<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
<category android:name="android.intent.category.DEFAULT" />
2014-07-03 07:48:39 +02:00
</intent-filter>
</activity>
<activity
2016-03-14 09:17:46 +01:00
android:name=".activity.CustomTabEditorActivity"
2014-07-03 07:48:39 +02:00
android:exported="false"
android:label="@string/add_tab"
2016-03-01 06:37:56 +01:00
android:theme="@style/Theme.Twidere.Dialog"
android:windowSoftInputMode="adjustResize" >
2014-07-03 07:48:39 +02:00
<intent-filter>
<action android:name="org.mariotaku.twidere.ADD_TAB" />
<action android:name="org.mariotaku.twidere.EDIT_TAB" />
2014-07-03 07:48:39 +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"
android:theme="@style/Theme.Twidere.NoDisplay" >
2014-07-03 07:48:39 +02:00
<intent-filter>
<action android:name="android.intent.action.CREATE_SHORTCUT" />
2014-07-03 07:48:39 +02:00
<category android:name="android.intent.category.DEFAULT" />
2014-07-03 07:48:39 +02:00
</intent-filter>
</activity>
2015-11-10 09:03:03 +01:00
<activity
android:name=".activity.CopyLinkActivity"
android:label="@string/copy_link"
android:theme="@style/Theme.Twidere.NoDisplay" />
2014-07-03 07:48:39 +02:00
<activity
2016-03-14 09:17:46 +01:00
android:name=".activity.RequestPermissionsActivity"
2014-07-03 07:48:39 +02:00
android:label="@string/permissions_request"
android:theme="@style/Theme.Twidere.Dialog" >
2014-07-03 07:48:39 +02:00
<intent-filter>
<action android:name="org.mariotaku.twidere.REQUEST_PERMISSIONS" />
2014-07-03 07:48:39 +02:00
<category android:name="android.intent.category.DEFAULT" />
2014-07-03 07:48:39 +02:00
</intent-filter>
</activity>
<activity
2016-03-14 09:17:46 +01:00
android:name=".activity.UserListSelectorActivity"
2014-07-03 07:48:39 +02:00
android:label="@string/select_user_list"
android:theme="@style/Theme.Twidere.Dialog" >
2014-07-03 07:48:39 +02:00
<intent-filter>
<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
<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"
android:theme="@style/Theme.Twidere.NoActionBar" />
2014-07-03 07:48:39 +02:00
<activity
2016-03-14 09:17:46 +01:00
android:name=".activity.DataExportActivity"
2014-07-03 07:48:39 +02:00
android:label="@string/export_settings"
android:theme="@style/Theme.Twidere.NoDisplay" />
2014-07-03 07:48:39 +02:00
<activity
2016-03-14 09:17:46 +01:00
android:name=".activity.DataImportActivity"
2014-07-03 07:48:39 +02:00
android:label="@string/import_settings"
android:theme="@style/Theme.Twidere.NoDisplay" />
2014-07-03 07:48:39 +02:00
<activity
2016-03-14 09:17:46 +01:00
android:name=".activity.ActivityPickerActivity"
android:theme="@style/Theme.Twidere.Dialog" >
2014-07-03 07:48:39 +02:00
<intent-filter>
<action android:name="org.mariotaku.twidere.PICK_ACTIVITY" />
2014-07-03 07:48:39 +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"
android:theme="@style/Theme.Twidere.NoDisplay" >
2014-07-03 07:48:39 +02:00
<intent-filter>
<data
android:host="twitter.com"
android:pathPrefix="/"
android:scheme="http" />
2014-07-03 07:48:39 +02:00
<data
android:host="twitter.com"
android:pathPrefix="/"
android:scheme="https" />
2014-07-03 07:48:39 +02:00
<data
android:host="www.twitter.com"
android:pathPrefix="/"
android:scheme="http" />
2014-07-03 07:48:39 +02:00
<data
android:host="www.twitter.com"
android:pathPrefix="/"
android:scheme="https" />
2014-07-03 07:48:39 +02:00
<data
android:host="mobile.twitter.com"
android:pathPrefix="/"
android:scheme="http" />
2014-07-03 07:48:39 +02:00
<data
android:host="mobile.twitter.com"
android:pathPrefix="/"
android:scheme="https" />
2014-07-03 07:48:39 +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
<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:enabled="false"
2014-07-03 07:48:39 +02:00
android:excludeFromRecents="true"
android:taskAffinity=":twidere_assist_launcher"
android:theme="@style/Theme.Twidere.NoDisplay" >
2014-07-03 07:48:39 +02:00
<intent-filter>
<action android:name="android.intent.action.ASSIST" />
2014-07-03 07:48:39 +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"
android:resource="@drawable/ic_assist_twidere" />
2014-07-03 07:48:39 +02:00
</activity>
<activity
android:name=".activity.KeyboardShortcutPreferenceCompatActivity"
android:theme="@style/Theme.Twidere.Dialog" />
2014-07-03 07:48:39 +02:00
<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"
android:launchMode="singleTop"
android:windowSoftInputMode="adjustResize" >
2015-01-24 19:07:32 +01:00
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<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"
android:windowSoftInputMode="stateAlwaysHidden" />
<activity
2015-04-17 19:00:34 +02:00
android:name=".activity.UsageStatisticsActivity"
android:label="@string/usage_statistics"
android:theme="@style/Theme.Twidere.NoDisplay" />
2015-06-16 13:28:45 +02:00
<activity
android:name=".activity.ImageCropperActivity"
android:label="@string/crop_image"
2016-03-01 06:37:56 +01:00
android:theme="@style/Theme.Twidere.NoActionBar"
android:windowSoftInputMode="adjustResize" />
2014-07-03 07:48:39 +02:00
<service
android:name=".service.RefreshService"
android:label="@string/label_refresh_service" />
2015-05-27 18:31:48 +02:00
<service
android:name=".service.StreamingService"
android:label="@string/label_streaming_service" />
2014-07-03 07:48:39 +02:00
<service
android:name=".service.BackgroundOperationService"
android:label="@string/label_background_operation_service" />
2014-07-03 07:48:39 +02:00
<service
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"
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"
android:resource="@xml/nyan_wallpaper" />
2014-07-03 07:48:39 +02:00
</service>
<service
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"
android:process=":daydream"
tools:ignore="ExportedService" >
<intent-filter android:priority="1" >
<action android:name="android.service.dreams.DreamService" />
2014-07-03 07:48:39 +02:00
</intent-filter>
</service>
<service android:name="edu.tsinghua.hotmobi.UploadLogsService" />
2014-07-03 07:48:39 +02:00
<provider
android:name=".provider.TwidereDataProvider"
android:authorities="twidere"
android:exported="true"
android:grantUriPermissions="true"
2015-04-26 12:55:41 +02:00
android:label="@string/label_data_provider"
tools:ignore="ExportedContentProvider" />
2014-07-03 07:48:39 +02:00
<provider
android:name=".provider.RecentSearchProvider"
android:authorities="org.mariotaku.twidere.provider.SearchRecentSuggestions"
tools:ignore="ExportedContentProvider" />
<provider
android:name="android.support.v4.content.FileProvider"
android:authorities="twidere.file"
android:exported="false"
android:grantUriPermissions="true" >
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/file_paths" />
</provider>
2016-01-01 11:57:18 +01:00
<provider
android:name=".provider.CacheProvider"
android:authorities="twidere.cache"
android:exported="false" />
2014-07-03 07:48:39 +02:00
<receiver android:name=".receiver.ConnectivityStateReceiver" >
2014-07-03 07:48:39 +02:00
<intent-filter>
<action android:name="android.net.conn.CONNECTIVITY_CHANGE" />
2014-07-03 07:48:39 +02:00
</intent-filter>
</receiver>
<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"
android:label="@string/twidere_test" >
2014-07-03 07:48:39 +02:00
<intent-filter>
<action android:name="android.provider.Telephony.SECRET_CODE" />
2014-07-03 07:48:39 +02:00
<data
android:host="8943373"
android:scheme="android_secret_code" />
2015-09-30 12:24:29 +02:00
</intent-filter>
</receiver>
<receiver android:name=".receiver.PowerStateReceiver" >
2015-09-30 12:24:29 +02:00
<intent-filter>
<action android:name="android.intent.action.BATTERY_LOW" />
<action android:name="android.intent.action.BATTERY_OKAY" />
<action android:name="android.intent.action.ACTION_POWER_CONNECTED" />
<action android:name="android.intent.action.ACTION_POWER_DISCONNECTED" />
2014-07-03 07:48:39 +02:00
</intent-filter>
</receiver>
</application>
</manifest>