27eefbf65a
* do not add media urls to status text * add scrolling to content * add arrow icon and animation to replying-to toggle * remove unnecessary compose_button_colors.xml * improve toot button * improve bottom bar, add bottom sheet for compose options, dedicated cw button * fix crash on Android < API 21 * move media picking from dialog to bottom sheet * add small style tootbutton * fix colors/button background for light theme * add icons to media chose bottom sheet * improve hide media button, delete unused styles * fix crash on dev build when taking photo * consolidate drawables * consolidate strings and ids, add tooltips to buttons * allow media only toots * change error message to show max size of upload correctly * fix button color * add emoji * code cleanup * Merge branch 'master' into compose_activity_refactoring # Conflicts: # app/src/main/java/com/keylesspalace/tusky/ComposeActivity.java * fix hidden snackbar * improve hint text color * add SendTootService * fix timeline refreshing * toot saving and error handling for sendtootservice * restructure some code * convert EditTextTyped to Kotlin * fixed pick media button disabled color * force sensitive media when content warning is shown * add db cache for emojis & fix tests * reorder buttons to match mastodon web * add possibility to cancel sending of toot * correctly delete sent toots * refresh SavedTootActivity after toot was sent * remove unused resources * correct params for toot saving in SendTootService * consolidate strings * bugfix * remove unused resources * fix notifications on old android for SendTootService * fix crash
127 lines
No EOL
5.5 KiB
XML
127 lines
No EOL
5.5 KiB
XML
<?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" /> <!--For notifications-->
|
|
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" /> <!-- for day/night mode -->
|
|
|
|
<application
|
|
android:allowBackup="true"
|
|
android:icon="@mipmap/ic_launcher"
|
|
android:label="@string/app_name"
|
|
android:name=".TuskyApplication"
|
|
android:supportsRtl="true"
|
|
android:theme="@style/AppTheme">
|
|
|
|
<activity
|
|
android:name=".SplashActivity"
|
|
android:theme="@style/SplashTheme">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
<activity
|
|
android:name=".SavedTootActivity"
|
|
android:configChanges="orientation|screenSize|keyboardHidden">
|
|
</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="${applicationId}"
|
|
android:scheme="@string/oauth_scheme" />
|
|
</intent-filter>
|
|
</activity>
|
|
<activity
|
|
android:name=".MainActivity"
|
|
android:configChanges="orientation|screenSize|keyboardHidden">
|
|
</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>
|
|
<activity
|
|
android:name=".ViewVideoActivity"
|
|
android:theme="@style/AppThemeBase"
|
|
android:configChanges="orientation|keyboardHidden|screenSize" />
|
|
<activity
|
|
android:name=".ViewThreadActivity"
|
|
android:configChanges="orientation|screenSize" />
|
|
<activity android:name=".ViewTagActivity" />
|
|
<activity android:name=".ViewMediaActivity"
|
|
android:theme="@style/AppThemeBase" />
|
|
<activity android:name=".AccountActivity" />
|
|
<activity android:name=".EditProfileActivity" />
|
|
<activity android:name=".PreferencesActivity" />
|
|
<activity android:name=".FavouritesActivity" />
|
|
<activity android:name=".AccountListActivity" />
|
|
<activity android:name=".AboutActivity" />
|
|
<activity
|
|
android:name=".ReportActivity"
|
|
android:windowSoftInputMode="stateVisible|adjustResize" />
|
|
<activity
|
|
android:name="com.theartofdev.edmodo.cropper.CropImageActivity"
|
|
android:theme="@style/Base.Theme.AppCompat" />
|
|
<activity
|
|
android:name=".SearchActivity"
|
|
android:launchMode="singleTop">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.SEARCH" />
|
|
</intent-filter>
|
|
<meta-data android:name="android.app.searchable" android:resource="@xml/searchable" />
|
|
</activity>
|
|
<activity android:name=".ListsActivity" />
|
|
<activity android:name=".ModalTimelineActivity" />
|
|
|
|
<receiver android:name=".receiver.NotificationClearBroadcastReceiver" />
|
|
|
|
<service
|
|
tools:targetApi="24"
|
|
android:name="com.keylesspalace.tusky.service.TuskyTileService"
|
|
android:icon="@drawable/ic_tusky"
|
|
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>
|
|
<service android:name=".service.SendTootService" />
|
|
|
|
<provider
|
|
android:name="android.support.v4.content.FileProvider"
|
|
android:authorities="${applicationId}.fileprovider"
|
|
android:exported="false"
|
|
android:grantUriPermissions="true">
|
|
<meta-data
|
|
android:name="android.support.FILE_PROVIDER_PATHS"
|
|
android:resource="@xml/file_paths" />
|
|
</provider>
|
|
</application>
|
|
|
|
</manifest> |