2014-07-03 07:48:39 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2016-03-18 17:04:03 +01: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
|
|
|
|
2016-03-18 17:04:03 +01:00
|
|
|
<uses-sdk/>
|
2014-07-03 07:48:39 +02:00
|
|
|
|
|
|
|
<uses-feature
|
|
|
|
android:name="android.hardware.camera"
|
2016-03-18 17:04:03 +01:00
|
|
|
android:required="false"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
<uses-feature
|
|
|
|
android:name="android.hardware.location"
|
2016-03-18 17:04:03 +01:00
|
|
|
android:required="false"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
<uses-feature
|
|
|
|
android:name="android.hardware.location.gps"
|
2016-03-18 17:04:03 +01:00
|
|
|
android:required="false"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
<uses-feature
|
|
|
|
android:name="android.hardware.location.network"
|
2016-03-18 17:04:03 +01:00
|
|
|
android:required="false"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
<uses-feature
|
|
|
|
android:name="android.hardware.touchscreen"
|
2016-03-18 17:04:03 +01:00
|
|
|
android:required="false"/>
|
2015-03-14 16:11:20 +01:00
|
|
|
<uses-feature
|
|
|
|
android:name="android.hardware.nfc"
|
2016-03-18 17:04:03 +01:00
|
|
|
android:required="false"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
<uses-feature
|
|
|
|
android:glEsVersion="0x00020000"
|
2016-03-18 17:04:03 +01: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"/>
|
2016-02-29 01:24:10 +01:00
|
|
|
<uses-permission
|
|
|
|
android:name="android.permission.READ_PHONE_STATE"
|
2016-03-18 17:04:03 +01:00
|
|
|
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"
|
2016-03-18 17:04:03 +01: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"
|
2016-03-18 17:04:03 +01: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"
|
2016-03-18 17:04:03 +01: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"
|
2016-03-18 17:04:03 +01: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"
|
2015-10-12 08:59:17 +02:00
|
|
|
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"
|
2015-05-03 16:43:05 +02:00
|
|
|
android:supportsRtl="true"
|
2016-03-15 05:40:02 +01:00
|
|
|
android:theme="@style/Theme.Twidere.NoActionBar"
|
2016-03-18 17:04:03 +01:00
|
|
|
tools:ignore="UnusedAttribute">
|
2014-07-03 07:48:39 +02:00
|
|
|
<uses-library
|
|
|
|
android:name="com.sec.android.app.multiwindow"
|
2016-03-18 17:04:03 +01:00
|
|
|
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"
|
2016-03-18 17:04:03 +01:00
|
|
|
android:value="dc4ee756d3b705e00011782f1426fc8656ad3bd9"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
<meta-data
|
|
|
|
android:name="com.google.android.backup.api_key"
|
2016-03-18 17:04:03 +01:00
|
|
|
android:value="AEdPqrEAAAAIKbKATV1AGbLB4kem3w8QaPVJSPVVumbMHxkfwA"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
<meta-data
|
|
|
|
android:name="com.sec.android.support.multiwindow"
|
2016-03-18 17:04:03 +01:00
|
|
|
android:value="true"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
<meta-data
|
|
|
|
android:name="com.sec.android.multiwindow.DEFAULT_SIZE_W"
|
2016-03-18 17:04:03 +01:00
|
|
|
android:value="480dp"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
<meta-data
|
|
|
|
android:name="com.sec.android.multiwindow.DEFAULT_SIZE_H"
|
2016-03-18 17:04:03 +01:00
|
|
|
android:value="640dp"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
<meta-data
|
|
|
|
android:name="com.sec.android.multiwindow.MINIMUM_SIZE_W"
|
2016-03-18 17:04:03 +01:00
|
|
|
android:value="240dp"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
<meta-data
|
|
|
|
android:name="com.sec.android.multiwindow.MINIMUM_SIZE_H"
|
2016-03-18 17:04:03 +01:00
|
|
|
android:value="320dp"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
<meta-data
|
|
|
|
android:name="override_tinted_status_bar_defaults"
|
2016-03-18 17:04:03 +01: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"
|
2016-03-01 06:37:56 +01:00
|
|
|
android:theme="@style/Theme.Twidere.NoActionBar"
|
2016-03-18 17:04:03 +01:00
|
|
|
android:windowSoftInputMode="adjustNothing">
|
2014-07-03 07:48:39 +02:00
|
|
|
<intent-filter>
|
2016-03-18 17:04:03 +01:00
|
|
|
<action android:name="android.intent.action.MAIN"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
|
2016-03-18 17:04:03 +01: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"
|
2016-03-18 17:04:03 +01:00
|
|
|
android:windowSoftInputMode="adjustResize">
|
2014-07-03 07:48:39 +02:00
|
|
|
<intent-filter>
|
2016-03-18 17:04:03 +01:00
|
|
|
<action android:name="android.intent.action.MAIN"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
|
2016-03-18 17:04:03 +01: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"
|
2016-03-18 17:04:03 +01:00
|
|
|
android:windowSoftInputMode="adjustResize">
|
2014-07-03 07:48:39 +02:00
|
|
|
<intent-filter>
|
2016-03-18 17:04:03 +01:00
|
|
|
<action android:name="org.mariotaku.twidere.HOME"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
|
2016-03-18 17:04:03 +01:00
|
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
</intent-filter>
|
|
|
|
<intent-filter>
|
2016-03-18 17:04:03 +01:00
|
|
|
<action android:name="android.intent.action.SEARCH"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
|
2016-03-18 17:04:03 +01: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"
|
2016-03-18 17:04:03 +01:00
|
|
|
android:resource="@xml/searchable"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
<meta-data
|
|
|
|
android:name="android.app.default_searchable"
|
2016-03-18 17:04:03 +01:00
|
|
|
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"
|
2016-03-18 17:04:03 +01: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"/>
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
</intent-filter>
|
2016-03-18 17:04:03 +01: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
|
|
|
|
2016-03-18 17:04:03 +01:00
|
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
|
2016-03-18 17:04:03 +01: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"
|
2016-03-18 17:04:03 +01:00
|
|
|
android:value=".activity.HomeActivity"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
</activity>
|
2015-01-06 16:46:07 +01:00
|
|
|
<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"
|
2015-01-06 16:46:07 +01:00
|
|
|
android:launchMode="singleTop"
|
2016-03-01 06:37:56 +01:00
|
|
|
android:theme="@style/Theme.Twidere.QuickSearchBar"
|
2016-03-18 17:04:03 +01:00
|
|
|
android:windowSoftInputMode="adjustResize">
|
2015-01-06 16:46:07 +01:00
|
|
|
<intent-filter>
|
2016-03-18 17:04:03 +01:00
|
|
|
<action android:name="org.mariotaku.twidere.GLOBAL_SEARCH"/>
|
2015-03-24 16:40:47 +01:00
|
|
|
|
2016-03-18 17:04:03 +01: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
|
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"
|
2016-03-18 17:04:03 +01:00
|
|
|
android:windowSoftInputMode="adjustResize">
|
2014-07-03 07:48:39 +02:00
|
|
|
<intent-filter>
|
2016-03-18 17:04:03 +01:00
|
|
|
<action android:name="org.mariotaku.twidere.TWITTER_LOGIN"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
|
2016-03-18 17:04:03 +01: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"
|
2016-03-18 17:04:03 +01:00
|
|
|
android:windowSoftInputMode="adjustResize">
|
2014-07-03 07:48:39 +02:00
|
|
|
<intent-filter>
|
2016-03-18 17:04:03 +01:00
|
|
|
<action android:name="org.mariotaku.twidere.TWITTER_BROWSER_LOGIN"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
|
2016-03-18 17:04:03 +01: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"
|
2016-03-18 17:04:03 +01:00
|
|
|
android:windowSoftInputMode="adjustResize">
|
2014-07-03 07:48:39 +02:00
|
|
|
<intent-filter>
|
2016-03-18 17:04:03 +01: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
|
|
|
|
2016-03-18 17:04:03 +01: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"
|
2016-03-18 17:04:03 +01:00
|
|
|
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"
|
2016-03-18 17:04:03 +01:00
|
|
|
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"
|
2016-03-18 17:04:03 +01:00
|
|
|
android:theme="@style/Theme.Twidere.Dialog">
|
2014-07-03 07:48:39 +02:00
|
|
|
<intent-filter>
|
2016-03-18 17:04:03 +01:00
|
|
|
<action android:name="org.mariotaku.twidere.SELECT_ACCOUNT"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
|
2016-03-18 17:04:03 +01: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"
|
2016-03-18 17:04:03 +01:00
|
|
|
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"
|
2016-03-18 17:04:03 +01:00
|
|
|
android:windowSoftInputMode="adjustResize">
|
2014-07-03 07:48:39 +02:00
|
|
|
<meta-data
|
|
|
|
android:name="android.support.PARENT_ACTIVITY"
|
2016-03-18 17:04:03 +01:00
|
|
|
android:value=".activity.HomeActivity"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
|
|
|
|
<intent-filter>
|
2016-03-18 17:04:03 +01:00
|
|
|
<action android:name="android.intent.action.VIEW"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
|
2016-03-18 17:04:03 +01:00
|
|
|
<category android:name="android.intent.category.BROWSABLE"/>
|
|
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
|
2016-03-18 17:04:03 +01:00
|
|
|
<data android:scheme="twidere"/>
|
2014-10-29 07:48:07 +01:00
|
|
|
</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"
|
2016-03-18 17:04:03 +01:00
|
|
|
android:windowSoftInputMode="adjustPan">
|
2016-02-19 16:21:26 +01:00
|
|
|
<meta-data
|
|
|
|
android:name="android.support.PARENT_ACTIVITY"
|
2016-03-18 17:04:03 +01:00
|
|
|
android:value=".activity.HomeActivity"/>
|
2016-02-19 16:21:26 +01:00
|
|
|
|
2014-07-03 07:48:39 +02:00
|
|
|
<intent-filter>
|
2016-03-18 17:04:03 +01:00
|
|
|
<action android:name="org.mariotaku.twidere.VIEW_MEDIA"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
|
2016-03-18 17:04:03 +01:00
|
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
|
|
|
<category android:name="android.intent.category.BROWSABLE"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
|
2016-03-18 17:04:03 +01: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"
|
2016-03-18 17:04:03 +01:00
|
|
|
android:windowSoftInputMode="adjustResize">
|
2014-07-03 07:48:39 +02:00
|
|
|
<intent-filter>
|
2016-03-18 17:04:03 +01: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
|
|
|
|
2016-03-18 17:04:03 +01: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"
|
2016-03-18 17:04:03 +01:00
|
|
|
android:windowSoftInputMode="adjustResize">
|
2014-07-03 07:48:39 +02:00
|
|
|
<intent-filter>
|
2016-03-18 17:04:03 +01: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
|
|
|
|
2016-03-18 17:04:03 +01: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"
|
2016-03-18 17:04:03 +01:00
|
|
|
android:windowSoftInputMode="adjustResize">
|
2014-07-03 07:48:39 +02:00
|
|
|
<intent-filter>
|
2016-03-18 17:04:03 +01: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
|
|
|
|
2016-03-18 17:04:03 +01: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"
|
2016-03-18 17:04:03 +01:00
|
|
|
android:theme="@style/Theme.Twidere.NoDisplay">
|
2014-07-03 07:48:39 +02:00
|
|
|
<intent-filter>
|
2016-03-18 17:04:03 +01:00
|
|
|
<action android:name="android.intent.action.CREATE_SHORTCUT"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
|
2016-03-18 17:04:03 +01: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"
|
2016-03-18 17:04:03 +01:00
|
|
|
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"
|
2016-03-18 17:04:03 +01:00
|
|
|
android:theme="@style/Theme.Twidere.Dialog">
|
2014-07-03 07:48:39 +02:00
|
|
|
<intent-filter>
|
2016-03-18 17:04:03 +01:00
|
|
|
<action android:name="org.mariotaku.twidere.REQUEST_PERMISSIONS"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
|
2016-03-18 17:04:03 +01: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"
|
2016-03-18 17:04:03 +01:00
|
|
|
android:theme="@style/Theme.Twidere.Dialog">
|
2014-07-03 07:48:39 +02:00
|
|
|
<intent-filter>
|
2016-03-18 17:04:03 +01: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
|
|
|
|
2016-03-18 17:04:03 +01: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"
|
2016-03-18 17:04:03 +01:00
|
|
|
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"
|
2016-03-18 17:04:03 +01:00
|
|
|
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"
|
2016-03-18 17:04:03 +01:00
|
|
|
android:theme="@style/Theme.Twidere.NoDisplay"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
<activity
|
|
|
|
android:name=".activity.TwitterLinkHandlerActivity"
|
|
|
|
android:excludeFromRecents="true"
|
|
|
|
android:taskAffinity=":twidere_twitter_link_handler"
|
2016-03-18 17:04:03 +01:00
|
|
|
android:theme="@style/Theme.Twidere.NoDisplay">
|
2014-07-03 07:48:39 +02:00
|
|
|
<intent-filter>
|
|
|
|
<data
|
|
|
|
android:host="twitter.com"
|
2015-05-03 16:43:05 +02:00
|
|
|
android:pathPrefix="/"
|
2016-03-18 17:04:03 +01:00
|
|
|
android:scheme="http"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
<data
|
|
|
|
android:host="twitter.com"
|
2015-05-03 16:43:05 +02:00
|
|
|
android:pathPrefix="/"
|
2016-03-18 17:04:03 +01:00
|
|
|
android:scheme="https"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
<data
|
|
|
|
android:host="www.twitter.com"
|
2015-05-03 16:43:05 +02:00
|
|
|
android:pathPrefix="/"
|
2016-03-18 17:04:03 +01:00
|
|
|
android:scheme="http"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
<data
|
|
|
|
android:host="www.twitter.com"
|
2015-05-03 16:43:05 +02:00
|
|
|
android:pathPrefix="/"
|
2016-03-18 17:04:03 +01:00
|
|
|
android:scheme="https"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
<data
|
|
|
|
android:host="mobile.twitter.com"
|
2015-05-03 16:43:05 +02:00
|
|
|
android:pathPrefix="/"
|
2016-03-18 17:04:03 +01:00
|
|
|
android:scheme="http"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
<data
|
|
|
|
android:host="mobile.twitter.com"
|
2015-05-03 16:43:05 +02:00
|
|
|
android:pathPrefix="/"
|
2016-03-18 17:04:03 +01:00
|
|
|
android:scheme="https"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
|
2016-03-18 17:04:03 +01:00
|
|
|
<action android:name="android.intent.action.VIEW"/>
|
|
|
|
<action android:name="android.nfc.action.NDEF_DISCOVERED"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
|
2016-03-18 17:04:03 +01: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"
|
2015-04-19 17:11:17 +02:00
|
|
|
android:enabled="false"
|
2014-07-03 07:48:39 +02:00
|
|
|
android:excludeFromRecents="true"
|
|
|
|
android:taskAffinity=":twidere_assist_launcher"
|
2016-03-18 17:04:03 +01:00
|
|
|
android:theme="@style/Theme.Twidere.NoDisplay">
|
2014-07-03 07:48:39 +02:00
|
|
|
<intent-filter>
|
2016-03-18 17:04:03 +01:00
|
|
|
<action android:name="android.intent.action.ASSIST"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
|
2016-03-18 17:04:03 +01: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"
|
2016-03-18 17:04:03 +01:00
|
|
|
android:resource="@drawable/ic_assist_twidere"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
</activity>
|
2015-04-20 17:06:39 +02:00
|
|
|
<activity
|
|
|
|
android:name=".activity.KeyboardShortcutPreferenceCompatActivity"
|
2016-03-18 17:04:03 +01:00
|
|
|
android:theme="@style/Theme.Twidere.Dialog"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
<activity
|
2016-03-18 17:04:03 +01:00
|
|
|
android:name=".activity.HiddenSettingsActivity"
|
|
|
|
android:label="@string/hidden_settings"
|
2015-03-24 16:40:47 +01:00
|
|
|
android:launchMode="singleTop"
|
2016-03-18 17:04:03 +01:00
|
|
|
android:theme="@style/Theme.Twidere"
|
|
|
|
android:windowSoftInputMode="adjustResize"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
<activity
|
|
|
|
android:name=".activity.NyanActivity"
|
|
|
|
android:launchMode="singleTop"
|
|
|
|
android:theme="@style/Theme.Nyan"
|
2016-03-18 17:04:03 +01:00
|
|
|
android:windowSoftInputMode="stateAlwaysHidden"/>
|
2015-03-24 16:40:47 +01:00
|
|
|
<activity
|
2015-04-17 19:00:34 +02:00
|
|
|
android:name=".activity.UsageStatisticsActivity"
|
2015-04-08 08:33:07 +02:00
|
|
|
android:label="@string/usage_statistics"
|
2016-03-18 17:04:03 +01:00
|
|
|
android:theme="@style/Theme.Twidere"/>
|
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"
|
2016-03-18 17:04:03 +01:00
|
|
|
android:windowSoftInputMode="adjustResize"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
|
|
|
|
<service
|
|
|
|
android:name=".service.RefreshService"
|
2016-03-18 17:04:03 +01:00
|
|
|
android:label="@string/label_refresh_service"/>
|
2015-05-27 18:31:48 +02:00
|
|
|
<service
|
|
|
|
android:name=".service.StreamingService"
|
2016-03-18 17:04:03 +01:00
|
|
|
android:label="@string/label_streaming_service"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
<service
|
|
|
|
android:name=".service.BackgroundOperationService"
|
2016-03-18 17:04:03 +01: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"
|
2016-03-18 17:04:03 +01: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"
|
2016-03-18 17:04:03 +01: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-04-15 20:40:28 +02:00
|
|
|
android:process=":daydream"
|
2016-03-18 17:04:03 +01:00
|
|
|
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>
|
2016-03-18 17:04:03 +01:00
|
|
|
<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"
|
2016-03-18 17:04:03 +01:00
|
|
|
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"
|
2016-03-18 17:04:03 +01:00
|
|
|
tools:ignore="ExportedContentProvider"/>
|
2015-12-28 05:33:46 +01:00
|
|
|
<provider
|
|
|
|
android:name="android.support.v4.content.FileProvider"
|
|
|
|
android:authorities="twidere.file"
|
|
|
|
android:exported="false"
|
2016-03-18 17:04:03 +01:00
|
|
|
android:grantUriPermissions="true">
|
2015-12-28 05:33:46 +01:00
|
|
|
<meta-data
|
|
|
|
android:name="android.support.FILE_PROVIDER_PATHS"
|
2016-03-18 17:04:03 +01:00
|
|
|
android:resource="@xml/file_paths"/>
|
2015-12-28 05:33:46 +01:00
|
|
|
</provider>
|
2016-01-01 11:57:18 +01:00
|
|
|
<provider
|
|
|
|
android:name=".provider.CacheProvider"
|
|
|
|
android:authorities="twidere.cache"
|
2016-03-18 17:04:03 +01:00
|
|
|
android:exported="false"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
|
2016-03-18 17:04:03 +01:00
|
|
|
<receiver android:name=".receiver.ConnectivityStateReceiver">
|
2014-07-03 07:48:39 +02:00
|
|
|
<intent-filter>
|
2016-03-18 17:04:03 +01: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"
|
2016-03-18 17:04:03 +01:00
|
|
|
android:exported="false">
|
2015-04-08 08:33:07 +02:00
|
|
|
<intent-filter>
|
2016-03-18 17:04:03 +01:00
|
|
|
<action android:name="org.mariotaku.twidere.NOTIFICATION_DELETED"/>
|
2015-04-08 08:33:07 +02:00
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
2014-07-03 07:48:39 +02:00
|
|
|
<receiver
|
|
|
|
android:name=".receiver.SecretCodeBroadcastReceiver"
|
2016-03-18 17:04:03 +01:00
|
|
|
android:label="@string/twidere_test">
|
2014-07-03 07:48:39 +02:00
|
|
|
<intent-filter>
|
2016-03-18 17:04:03 +01:00
|
|
|
<action android:name="android.provider.Telephony.SECRET_CODE"/>
|
2014-07-03 07:48:39 +02:00
|
|
|
|
|
|
|
<data
|
|
|
|
android:host="8943373"
|
2016-03-18 17:04:03 +01:00
|
|
|
android:scheme="android_secret_code"/>
|
2015-09-30 12:24:29 +02:00
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
2016-03-18 17:04:03 +01:00
|
|
|
<receiver android:name=".receiver.PowerStateReceiver">
|
2015-09-30 12:24:29 +02:00
|
|
|
<intent-filter>
|
2016-03-18 17:04:03 +01:00
|
|
|
<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>
|
|
|
|
|
2016-03-18 05:00:40 +01:00
|
|
|
</manifest>
|