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-03-12 18:31:20 +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">
|
2017-04-01 14:13:11 +11:00
|
|
|
<meta-data android:name="firebase_analytics_collection_enabled" android:value="false" />
|
2017-03-27 13:59:16 +11:00
|
|
|
<activity android:name=".SplashActivity">
|
2017-01-03 10:30:27 +11:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
2017-03-12 18:31:20 +11:00
|
|
|
|
2017-01-03 10:30:27 +11:00
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2017-03-16 06:32:26 +11:00
|
|
|
<activity
|
|
|
|
android:name=".LoginActivity"
|
|
|
|
android:windowSoftInputMode="adjustResize">
|
2017-01-03 10:30:27 +11:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
2017-03-12 18:31:20 +11:00
|
|
|
|
2017-01-03 10:30:27 +11:00
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
2017-03-12 18:31:20 +11:00
|
|
|
|
|
|
|
<data
|
|
|
|
android:host="@string/oauth_redirect_host"
|
|
|
|
android:scheme="@string/oauth_scheme" />
|
2017-01-03 10:30:27 +11:00
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
<activity android:name=".MainActivity" />
|
2017-01-08 09:24:02 +11:00
|
|
|
<activity
|
|
|
|
android:name=".ComposeActivity"
|
|
|
|
android:windowSoftInputMode="stateVisible|adjustResize" />
|
2017-03-12 23:41:29 +11:00
|
|
|
<activity android:name=".ViewVideoActivity" android:configChanges="orientation|keyboardHidden|screenSize" />
|
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-03-12 18:31:20 +11:00
|
|
|
|
|
|
|
<service android:name=".MyFirebaseInstanceIdService" android:exported="true">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="com.google.firebase.INSTANCE_ID_EVENT"/>
|
|
|
|
</intent-filter>
|
|
|
|
</service>
|
2017-03-16 09:45:59 +11:00
|
|
|
|
2017-03-12 18:31:20 +11:00
|
|
|
<service android:name=".MyFirebaseMessagingService" android:exported="true">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="com.google.firebase.MESSAGING_EVENT"/>
|
|
|
|
</intent-filter>
|
|
|
|
</service>
|
2017-03-16 09:45:59 +11:00
|
|
|
|
|
|
|
<receiver android:name=".NotificationClearBroadcastReceiver" />
|
2017-01-03 10:30:27 +11:00
|
|
|
</application>
|
|
|
|
|
|
|
|
</manifest>
|