2017-05-03 20:29:33 +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="com.keylesspalace.tusky">
|
|
|
|
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
2017-07-18 21:32:43 +02:00
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
2017-05-20 02:00:57 +02:00
|
|
|
<uses-permission android:name="android.permission.VIBRATE" /> <!--For notifications-->
|
2018-01-31 22:24:08 +01:00
|
|
|
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" /> <!-- for day/night mode -->
|
|
|
|
|
2017-05-03 20:29:33 +02:00
|
|
|
<application
|
2018-04-28 21:19:23 +02:00
|
|
|
android:allowBackup="false"
|
2017-05-03 20:29:33 +02:00
|
|
|
android:icon="@mipmap/ic_launcher"
|
|
|
|
android:label="@string/app_name"
|
2017-05-20 02:00:57 +02:00
|
|
|
android:name=".TuskyApplication"
|
2017-05-03 20:29:33 +02:00
|
|
|
android:supportsRtl="true"
|
2018-05-16 19:14:53 +02:00
|
|
|
android:theme="@style/TuskyTheme">
|
2017-05-03 20:29:33 +02:00
|
|
|
|
2017-05-10 04:36:05 +02:00
|
|
|
<activity
|
|
|
|
android:name=".SplashActivity"
|
|
|
|
android:theme="@style/SplashTheme">
|
2017-05-03 20:29:33 +02:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2017-06-29 17:55:39 +02:00
|
|
|
<activity
|
|
|
|
android:name=".SavedTootActivity"
|
|
|
|
android:configChanges="orientation|screenSize|keyboardHidden">
|
|
|
|
</activity>
|
2017-05-03 20:29:33 +02:00
|
|
|
<activity
|
|
|
|
android:name=".LoginActivity"
|
|
|
|
android:windowSoftInputMode="adjustResize">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
|
|
|
|
|
|
<data
|
2017-12-08 12:15:46 +01:00
|
|
|
android:host="${applicationId}"
|
2017-05-03 20:29:33 +02:00
|
|
|
android:scheme="@string/oauth_scheme" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
<activity
|
2017-05-03 22:28:46 +02:00
|
|
|
android:name=".MainActivity"
|
|
|
|
android:configChanges="orientation|screenSize|keyboardHidden">
|
2017-05-03 20:29:33 +02:00
|
|
|
</activity>
|
|
|
|
<activity
|
|
|
|
android:name=".ComposeActivity"
|
2018-05-16 19:14:53 +02:00
|
|
|
android:theme="@style/TuskyDialogActivityTheme"
|
2017-05-03 20:29:33 +02:00
|
|
|
android:windowSoftInputMode="stateVisible|adjustResize">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.SEND" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<data android:mimeType="text/plain" />
|
|
|
|
</intent-filter>
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.SEND" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<data android:mimeType="image/*" />
|
|
|
|
</intent-filter>
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.SEND_MULTIPLE" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<data android:mimeType="image/*" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2017-05-03 22:28:46 +02:00
|
|
|
<activity
|
|
|
|
android:name=".ViewVideoActivity"
|
2018-05-16 19:14:53 +02:00
|
|
|
android:theme="@style/TuskyBaseTheme"
|
2017-05-03 22:28:46 +02:00
|
|
|
android:configChanges="orientation|keyboardHidden|screenSize" />
|
|
|
|
<activity
|
|
|
|
android:name=".ViewThreadActivity"
|
|
|
|
android:configChanges="orientation|screenSize" />
|
2017-05-03 20:29:33 +02:00
|
|
|
<activity android:name=".ViewTagActivity" />
|
2018-02-09 23:25:48 +01:00
|
|
|
<activity android:name=".ViewMediaActivity"
|
2018-05-16 19:14:53 +02:00
|
|
|
android:theme="@style/TuskyBaseTheme" />
|
2017-05-03 20:29:33 +02:00
|
|
|
<activity android:name=".AccountActivity" />
|
|
|
|
<activity android:name=".EditProfileActivity" />
|
|
|
|
<activity android:name=".PreferencesActivity" />
|
|
|
|
<activity android:name=".FavouritesActivity" />
|
|
|
|
<activity android:name=".AccountListActivity" />
|
2017-04-15 20:05:25 +02:00
|
|
|
<activity android:name=".AboutActivity" />
|
2017-05-03 20:29:33 +02:00
|
|
|
<activity
|
|
|
|
android:name=".ReportActivity"
|
|
|
|
android:windowSoftInputMode="stateVisible|adjustResize" />
|
|
|
|
<activity
|
|
|
|
android:name="com.theartofdev.edmodo.cropper.CropImageActivity"
|
|
|
|
android:theme="@style/Base.Theme.AppCompat" />
|
2017-06-19 21:47:53 +02:00
|
|
|
<activity
|
|
|
|
android:name=".SearchActivity"
|
|
|
|
android:launchMode="singleTop">
|
2017-06-19 10:18:39 +02:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.SEARCH" />
|
|
|
|
</intent-filter>
|
|
|
|
<meta-data android:name="android.app.searchable" android:resource="@xml/searchable" />
|
|
|
|
</activity>
|
2018-01-06 19:01:37 +01:00
|
|
|
<activity android:name=".ListsActivity" />
|
|
|
|
<activity android:name=".ModalTimelineActivity" />
|
2017-05-03 20:29:33 +02:00
|
|
|
|
2017-05-15 12:05:10 +02:00
|
|
|
<receiver android:name=".receiver.NotificationClearBroadcastReceiver" />
|
2017-05-03 20:29:33 +02:00
|
|
|
|
2018-05-06 11:07:10 +02:00
|
|
|
<receiver
|
|
|
|
android:name=".receiver.SendStatusBroadcastReceiver"
|
|
|
|
android:enabled="true"
|
|
|
|
android:exported="false" />
|
|
|
|
|
2017-05-03 20:29:33 +02:00
|
|
|
<service
|
|
|
|
tools:targetApi="24"
|
2017-05-05 00:55:34 +02:00
|
|
|
android:name="com.keylesspalace.tusky.service.TuskyTileService"
|
2017-12-07 20:21:02 +01:00
|
|
|
android:icon="@drawable/ic_tusky"
|
2017-05-03 20:29:33 +02:00
|
|
|
android:label="Compose Toot"
|
|
|
|
android:permission="android.permission.BIND_QUICK_SETTINGS_TILE">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.service.quicksettings.action.QS_TILE" />
|
|
|
|
</intent-filter>
|
|
|
|
</service>
|
2018-04-13 22:37:21 +02:00
|
|
|
<service android:name=".service.SendTootService" />
|
2017-05-03 20:29:33 +02:00
|
|
|
|
|
|
|
<provider
|
|
|
|
android:name="android.support.v4.content.FileProvider"
|
2017-12-08 12:15:46 +01:00
|
|
|
android:authorities="${applicationId}.fileprovider"
|
2017-05-03 20:29:33 +02:00
|
|
|
android:exported="false"
|
|
|
|
android:grantUriPermissions="true">
|
|
|
|
<meta-data
|
|
|
|
android:name="android.support.FILE_PROVIDER_PATHS"
|
|
|
|
android:resource="@xml/file_paths" />
|
|
|
|
</provider>
|
|
|
|
</application>
|
|
|
|
|
2017-01-03 00:30:27 +01:00
|
|
|
</manifest>
|