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" />
|
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
|
|
|
<uses-permission android:name="android.permission.VIBRATE" />
|
|
|
|
|
|
|
|
<application
|
|
|
|
android:allowBackup="true"
|
|
|
|
android:icon="@mipmap/ic_launcher"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:supportsRtl="true"
|
|
|
|
android:theme="@style/AppTheme"
|
|
|
|
android:name=".TuskyApplication">
|
|
|
|
|
|
|
|
<activity android:name=".SplashActivity">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
<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
|
|
|
|
android:host="@string/oauth_redirect_host"
|
|
|
|
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"
|
|
|
|
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"
|
|
|
|
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" />
|
|
|
|
<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-05-05 00:55:34 +02:00
|
|
|
<receiver android:name=".util.NotificationClearBroadcastReceiver" />
|
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-05-03 20:29:33 +02:00
|
|
|
android:icon="@drawable/ic_send_24dp"
|
|
|
|
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>
|
|
|
|
|
|
|
|
<provider
|
|
|
|
android:name="android.support.v4.content.FileProvider"
|
|
|
|
android:authorities="com.keylesspalace.tusky.fileprovider"
|
|
|
|
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>
|