2017-01-03 10:30:27 +11:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
package="com.keylesspalace.tusky">
|
|
|
|
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
2017-01-17 05:15:42 +11:00
|
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
2017-01-25 15:35:54 +11:00
|
|
|
<uses-permission android:name="android.permission.VIBRATE"/>
|
2017-01-03 10:30:27 +11:00
|
|
|
|
|
|
|
<application
|
|
|
|
android:allowBackup="true"
|
2017-02-07 18:05:50 +11:00
|
|
|
android:icon="@mipmap/ic_launcher"
|
2017-01-03 10:30:27 +11:00
|
|
|
android:label="@string/app_name"
|
|
|
|
android:supportsRtl="true"
|
|
|
|
android:theme="@style/AppTheme">
|
|
|
|
<activity
|
|
|
|
android:name=".SplashActivity"
|
2017-03-08 09:10:41 +11:00
|
|
|
android:theme="@android:style/Theme.Black.NoTitleBar">
|
2017-01-03 10:30:27 +11:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
<activity android:name=".LoginActivity">
|
|
|
|
<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:scheme="@string/oauth_scheme" android:host="@string/oauth_redirect_host" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
<activity android:name=".MainActivity" />
|
2017-01-08 09:24:02 +11:00
|
|
|
<activity
|
|
|
|
android:name=".ComposeActivity"
|
|
|
|
android:windowSoftInputMode="stateVisible|adjustResize" />
|
2017-01-10 17:14:27 +11:00
|
|
|
<activity android:name=".ViewVideoActivity" />
|
2017-01-23 16:19:30 +11:00
|
|
|
<activity android:name=".ViewThreadActivity" />
|
2017-01-27 11:34:32 +11:00
|
|
|
<activity android:name=".ViewTagActivity" />
|
2017-01-28 14:33:43 +11:00
|
|
|
<activity android:name=".AccountActivity" />
|
2017-02-05 18:34:55 +11:00
|
|
|
<activity android:name=".PreferencesActivity" />
|
2017-02-21 13:32:10 +11:00
|
|
|
<activity android:name=".FavouritesActivity" />
|
2017-02-22 09:55:37 +11:00
|
|
|
<activity android:name=".BlocksActivity" />
|
2017-02-27 16:21:46 +11:00
|
|
|
<activity
|
|
|
|
android:name=".ReportActivity"
|
|
|
|
android:windowSoftInputMode="stateVisible|adjustResize" />
|
2017-01-25 15:35:54 +11:00
|
|
|
<service
|
2017-01-31 15:51:02 +11:00
|
|
|
android:name=".PullNotificationService"
|
2017-01-25 15:35:54 +11:00
|
|
|
android:description="@string/notification_service_description"
|
|
|
|
android:exported="false" />
|
2017-01-03 10:30:27 +11:00
|
|
|
</application>
|
|
|
|
|
|
|
|
</manifest>
|