2018-07-26 17:04:44 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2019-11-12 12:31:28 +01:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2018-07-26 17:04:44 +02:00
|
|
|
package="ml.docilealligator.infinityforreddit">
|
|
|
|
|
2020-09-22 17:41:57 +02:00
|
|
|
<queries>
|
|
|
|
<intent>
|
2020-09-28 03:56:58 +02:00
|
|
|
<action android:name="android.support.customtabs.action.CustomTabsService" />
|
2020-09-22 17:41:57 +02:00
|
|
|
</intent>
|
|
|
|
</queries>
|
|
|
|
|
2020-11-09 05:27:21 +01:00
|
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
2019-10-28 10:31:47 +01:00
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
2020-06-15 08:48:16 +02:00
|
|
|
<uses-permission android:name="android.permission.SET_WALLPAPER" />
|
|
|
|
<uses-permission android:name="android.permission.SET_WALLPAPER_HINTS" />
|
2019-10-28 10:31:47 +01:00
|
|
|
<uses-permission
|
|
|
|
android:name="android.permission.WRITE_EXTERNAL_STORAGE"
|
|
|
|
android:maxSdkVersion="22" />
|
|
|
|
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
|
|
|
|
|
|
|
|
<uses-permission-sdk-23 android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
|
|
|
|
2020-09-09 09:26:02 +02:00
|
|
|
<uses-permission android:name="android.permission.WAKE_LOCK" />
|
|
|
|
|
2018-07-26 17:04:44 +02:00
|
|
|
<application
|
2018-10-12 17:52:23 +02:00
|
|
|
android:name=".Infinity"
|
2019-02-22 06:34:24 +01:00
|
|
|
android:allowBackup="true"
|
2018-07-26 17:04:44 +02:00
|
|
|
android:icon="@mipmap/ic_launcher"
|
2019-11-12 12:31:28 +01:00
|
|
|
android:label="@string/application_name"
|
2018-07-26 17:04:44 +02:00
|
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
|
|
|
android:supportsRtl="true"
|
2019-01-07 12:03:49 +01:00
|
|
|
android:theme="@style/AppTheme"
|
2019-11-12 12:31:28 +01:00
|
|
|
android:usesCleartextTraffic="true"
|
|
|
|
tools:replace="android:label">
|
2021-03-11 15:08:27 +01:00
|
|
|
<activity
|
|
|
|
android:name=".activities.WebViewActivity"
|
|
|
|
android:label=""
|
|
|
|
android:parentActivityName=".activities.MainActivity"
|
|
|
|
android:theme="@style/AppTheme.NoActionBar" />
|
|
|
|
<activity
|
|
|
|
android:name=".activities.SuicidePreventionActivity"
|
2021-03-06 17:05:09 +01:00
|
|
|
android:parentActivityName=".activities.MainActivity"
|
|
|
|
android:theme="@style/AppTheme.NoActionBar" />
|
|
|
|
<activity
|
|
|
|
android:name=".activities.MultiredditSelectionActivity"
|
2021-01-05 09:00:45 +01:00
|
|
|
android:label="@string/multireddit_selection_activity_label"
|
|
|
|
android:parentActivityName=".activities.MainActivity"
|
2021-03-06 17:05:09 +01:00
|
|
|
android:theme="@style/AppTheme.NoActionBar" />
|
|
|
|
<activity
|
|
|
|
android:name=".activities.SearchUsersResultActivity"
|
2021-01-05 09:00:45 +01:00
|
|
|
android:label="@string/search_users_result_activity_label"
|
|
|
|
android:parentActivityName=".activities.MainActivity"
|
|
|
|
android:theme="@style/AppTheme.NoActionBar" />
|
2021-01-04 10:13:31 +01:00
|
|
|
<activity
|
|
|
|
android:name=".activities.PostFilterUsageListingActivity"
|
2020-12-26 08:25:40 +01:00
|
|
|
android:parentActivityName=".activities.SettingsActivity"
|
|
|
|
android:theme="@style/AppTheme.NoActionBar" />
|
|
|
|
<activity
|
|
|
|
android:name=".activities.PostFilterPreferenceActivity"
|
2020-12-25 17:26:30 +01:00
|
|
|
android:label="@string/post_filter_preference_activity_label"
|
2020-12-11 12:37:45 +01:00
|
|
|
android:parentActivityName=".activities.SettingsActivity"
|
2020-12-25 17:26:30 +01:00
|
|
|
android:theme="@style/AppTheme.NoActionBar" />
|
|
|
|
<activity
|
|
|
|
android:name=".activities.CustomizePostFilterActivity"
|
2020-12-11 12:37:45 +01:00
|
|
|
android:label="@string/customize_post_filter_activity_label"
|
2020-12-25 17:26:30 +01:00
|
|
|
android:parentActivityName=".activities.SettingsActivity"
|
2020-12-11 12:37:45 +01:00
|
|
|
android:theme="@style/AppTheme.NoActionBar"
|
|
|
|
android:windowSoftInputMode="adjustResize" />
|
2020-10-28 01:59:57 +01:00
|
|
|
<activity
|
2020-11-18 11:54:13 +01:00
|
|
|
android:name=".activities.FetchRandomSubredditOrPostActivity"
|
|
|
|
android:parentActivityName=".activities.MainActivity"
|
2020-10-04 10:55:19 +02:00
|
|
|
android:theme="@style/AppTheme.NoActionBar" />
|
|
|
|
<activity
|
2020-11-18 11:54:13 +01:00
|
|
|
android:name=".activities.GiveAwardActivity"
|
2020-09-28 03:56:58 +02:00
|
|
|
android:label="@string/give_award_activity_label"
|
2020-11-18 11:54:13 +01:00
|
|
|
android:parentActivityName=".activities.MainActivity"
|
2020-10-04 10:55:19 +02:00
|
|
|
android:theme="@style/AppTheme.Slidable" />
|
2020-09-28 03:56:58 +02:00
|
|
|
<activity
|
2020-11-18 11:54:13 +01:00
|
|
|
android:name=".activities.SelectUserFlairActivity"
|
|
|
|
android:parentActivityName=".activities.MainActivity"
|
2020-09-17 05:08:06 +02:00
|
|
|
android:theme="@style/AppTheme.Slidable" />
|
|
|
|
<activity
|
2020-11-18 11:54:13 +01:00
|
|
|
android:name=".activities.FullMarkdownActivity"
|
|
|
|
android:parentActivityName=".activities.MainActivity"
|
2020-09-14 03:06:31 +02:00
|
|
|
android:theme="@style/AppTheme.Slidable" />
|
|
|
|
<activity
|
2020-11-18 11:54:13 +01:00
|
|
|
android:name=".activities.SubmitCrosspostActivity"
|
2020-09-08 04:55:32 +02:00
|
|
|
android:label="@string/submit_crosspost_activity_label"
|
2020-11-18 11:54:13 +01:00
|
|
|
android:parentActivityName=".activities.MainActivity"
|
2020-09-08 04:55:32 +02:00
|
|
|
android:theme="@style/AppTheme.NoActionBar"
|
2020-09-14 03:06:31 +02:00
|
|
|
android:windowSoftInputMode="adjustResize" />
|
2020-09-08 04:55:32 +02:00
|
|
|
|
2020-09-06 05:54:50 +02:00
|
|
|
<service
|
2020-11-18 11:54:13 +01:00
|
|
|
android:name=".services.DownloadMediaService"
|
2020-09-06 05:54:50 +02:00
|
|
|
android:enabled="true"
|
2020-09-08 04:55:32 +02:00
|
|
|
android:exported="false" />
|
2020-09-06 05:54:50 +02:00
|
|
|
|
|
|
|
<activity
|
2020-11-18 11:54:13 +01:00
|
|
|
android:name=".activities.ViewRedditGalleryActivity"
|
2020-07-16 16:02:06 +02:00
|
|
|
android:configChanges="orientation|screenSize|layoutDirection"
|
2020-11-18 11:54:13 +01:00
|
|
|
android:parentActivityName=".activities.MainActivity"
|
2020-07-16 16:02:06 +02:00
|
|
|
android:theme="@style/AppTheme.Draggable" />
|
|
|
|
<activity
|
2020-11-18 11:54:13 +01:00
|
|
|
android:name=".activities.SendPrivateMessageActivity"
|
2020-07-07 17:35:18 +02:00
|
|
|
android:label="@string/send_private_message_activity_label"
|
2020-11-18 11:54:13 +01:00
|
|
|
android:parentActivityName=".activities.MainActivity"
|
2020-07-07 17:35:18 +02:00
|
|
|
android:theme="@style/AppTheme.NoActionBar"
|
|
|
|
android:windowSoftInputMode="adjustResize" />
|
2020-06-17 03:38:36 +02:00
|
|
|
|
2020-06-06 15:33:03 +02:00
|
|
|
<service
|
2020-11-18 11:54:13 +01:00
|
|
|
android:name=".services.DownloadRedditVideoService"
|
2020-06-06 15:33:03 +02:00
|
|
|
android:enabled="true"
|
2020-06-17 03:38:36 +02:00
|
|
|
android:exported="false" />
|
2020-06-06 15:33:03 +02:00
|
|
|
|
2020-07-07 17:35:18 +02:00
|
|
|
<activity
|
2020-11-18 11:54:13 +01:00
|
|
|
android:name=".activities.ViewPrivateMessagesActivity"
|
|
|
|
android:parentActivityName=".activities.MainActivity"
|
2020-07-14 13:43:26 +02:00
|
|
|
android:theme="@style/AppTheme.NoActionBar"
|
2020-07-02 05:13:10 +02:00
|
|
|
android:windowSoftInputMode="adjustResize" />
|
2020-06-03 13:02:46 +02:00
|
|
|
<activity
|
2020-11-18 11:54:13 +01:00
|
|
|
android:name=".activities.ViewImgurMediaActivity"
|
2020-06-03 13:02:46 +02:00
|
|
|
android:configChanges="orientation|screenSize|layoutDirection"
|
2020-11-18 11:54:13 +01:00
|
|
|
android:parentActivityName=".activities.MainActivity"
|
2020-07-15 05:51:29 +02:00
|
|
|
android:theme="@style/AppTheme.Draggable" />
|
2020-05-28 16:16:07 +02:00
|
|
|
<activity
|
2020-11-18 11:54:13 +01:00
|
|
|
android:name=".activities.ReportActivity"
|
2020-05-03 10:47:33 +02:00
|
|
|
android:label="@string/report_activity_label"
|
2020-11-18 11:54:13 +01:00
|
|
|
android:parentActivityName=".activities.MainActivity"
|
2020-06-17 16:11:18 +02:00
|
|
|
android:theme="@style/AppTheme.Slidable" />
|
2020-05-03 10:47:33 +02:00
|
|
|
<activity
|
2021-01-05 16:17:56 +01:00
|
|
|
android:name=".activities.SelectedSubredditsAndUsersActivity"
|
2020-04-04 10:10:25 +02:00
|
|
|
android:label="@string/selected_subeddits_activity_label"
|
2020-11-18 11:54:13 +01:00
|
|
|
android:parentActivityName=".activities.MainActivity"
|
2020-06-17 16:11:18 +02:00
|
|
|
android:theme="@style/AppTheme.Slidable" />
|
2020-05-03 10:47:33 +02:00
|
|
|
<activity
|
2020-11-18 11:54:13 +01:00
|
|
|
android:name=".activities.EditMultiRedditActivity"
|
2020-04-04 10:10:25 +02:00
|
|
|
android:label="@string/edit_multi_reddit_activity_label"
|
2020-11-18 11:54:13 +01:00
|
|
|
android:parentActivityName=".activities.MainActivity"
|
2020-06-17 16:11:18 +02:00
|
|
|
android:theme="@style/AppTheme.Slidable" />
|
2020-04-04 10:10:25 +02:00
|
|
|
<activity
|
2020-11-18 11:54:13 +01:00
|
|
|
android:name=".activities.CustomThemePreviewActivity"
|
2020-04-02 16:15:47 +02:00
|
|
|
android:label="@string/theme_preview_activity_label"
|
2020-11-18 11:54:13 +01:00
|
|
|
android:parentActivityName=".activities.MainActivity"
|
2020-06-17 16:11:18 +02:00
|
|
|
android:theme="@style/AppTheme.SlidableWithTranslucentWindow" />
|
2020-04-02 16:15:47 +02:00
|
|
|
<activity
|
2020-11-18 11:54:13 +01:00
|
|
|
android:name=".activities.CustomThemeListingActivity"
|
2020-03-24 07:14:47 +01:00
|
|
|
android:label="@string/custom_theme_listing_activity_label"
|
2020-11-18 11:54:13 +01:00
|
|
|
android:parentActivityName=".activities.MainActivity"
|
2020-03-24 07:14:47 +01:00
|
|
|
android:theme="@style/AppTheme.NoActionBar" />
|
2020-03-19 15:30:57 +01:00
|
|
|
<activity
|
2020-11-18 11:54:13 +01:00
|
|
|
android:name=".activities.CustomizeThemeActivity"
|
2020-03-26 17:30:05 +01:00
|
|
|
android:label="@string/customize_theme_activity_label"
|
2020-11-18 11:54:13 +01:00
|
|
|
android:parentActivityName=".activities.MainActivity"
|
2020-03-19 05:20:23 +01:00
|
|
|
android:theme="@style/AppTheme.NoActionBar" />
|
2020-02-18 11:16:04 +01:00
|
|
|
<activity
|
2020-11-18 11:54:13 +01:00
|
|
|
android:name=".activities.SubredditMultiselectionActivity"
|
2020-02-18 11:16:04 +01:00
|
|
|
android:label="@string/subreddit_multiselection_activity_label"
|
2020-11-18 11:54:13 +01:00
|
|
|
android:parentActivityName=".activities.MainActivity"
|
2020-06-17 16:11:18 +02:00
|
|
|
android:theme="@style/AppTheme.Slidable" />
|
2020-02-18 11:16:04 +01:00
|
|
|
<activity
|
2020-11-18 11:54:13 +01:00
|
|
|
android:name=".activities.CreateMultiRedditActivity"
|
2020-02-12 11:11:03 +01:00
|
|
|
android:label="@string/create_multi_reddit_activity_label"
|
2020-11-18 11:54:13 +01:00
|
|
|
android:parentActivityName=".activities.MainActivity"
|
2020-06-17 16:11:18 +02:00
|
|
|
android:theme="@style/AppTheme.Slidable"
|
2020-02-12 11:11:03 +01:00
|
|
|
android:windowSoftInputMode="adjustResize" />
|
2019-12-30 13:44:40 +01:00
|
|
|
<activity
|
2020-11-18 11:54:13 +01:00
|
|
|
android:name=".activities.ViewMultiRedditDetailActivity"
|
|
|
|
android:parentActivityName=".activities.MainActivity"
|
2020-06-17 16:11:18 +02:00
|
|
|
android:theme="@style/AppTheme.Slidable" />
|
2019-09-18 05:10:16 +02:00
|
|
|
<activity
|
2020-11-18 11:54:13 +01:00
|
|
|
android:name=".activities.AccountSavedThingActivity"
|
2020-02-12 11:11:03 +01:00
|
|
|
android:label="@string/account_saved_thing_activity_label"
|
2020-11-18 11:54:13 +01:00
|
|
|
android:parentActivityName=".activities.MainActivity"
|
2020-06-17 16:11:18 +02:00
|
|
|
android:theme="@style/AppTheme.Slidable" />
|
2020-11-18 11:54:13 +01:00
|
|
|
<activity android:name=".activities.ShareDataResolverActivity">
|
2019-08-28 10:41:36 +02:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.SEND" />
|
2019-09-18 05:10:16 +02:00
|
|
|
|
2019-08-28 10:41:36 +02:00
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
2019-09-18 05:10:16 +02:00
|
|
|
|
2019-08-28 10:41:36 +02:00
|
|
|
<data android:mimeType="image/*" />
|
|
|
|
</intent-filter>
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.SEND" />
|
2019-09-18 05:10:16 +02:00
|
|
|
|
2019-08-28 10:41:36 +02:00
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
2019-09-18 05:10:16 +02:00
|
|
|
|
2019-08-28 10:41:36 +02:00
|
|
|
<data android:mimeType="video/*" />
|
|
|
|
</intent-filter>
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.SEND" />
|
2019-09-18 05:10:16 +02:00
|
|
|
|
2019-08-28 10:41:36 +02:00
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
2019-09-18 05:10:16 +02:00
|
|
|
|
2019-08-28 10:41:36 +02:00
|
|
|
<data android:mimeType="text/plain" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2019-08-21 10:21:17 +02:00
|
|
|
<activity
|
2020-11-18 11:54:13 +01:00
|
|
|
android:name=".activities.SettingsActivity"
|
2019-09-24 02:51:56 +02:00
|
|
|
android:label="@string/settings_activity_label"
|
2020-11-18 11:54:13 +01:00
|
|
|
android:parentActivityName=".activities.MainActivity"
|
2019-08-21 10:21:17 +02:00
|
|
|
android:theme="@style/PreferenceActivityTheme" />
|
2019-08-18 10:03:58 +02:00
|
|
|
<activity
|
2020-11-18 11:54:13 +01:00
|
|
|
android:name=".activities.InboxActivity"
|
2019-08-21 10:21:17 +02:00
|
|
|
android:label="@string/view_message_activity_label"
|
2020-11-18 11:54:13 +01:00
|
|
|
android:parentActivityName=".activities.MainActivity"
|
2020-06-17 16:11:18 +02:00
|
|
|
android:theme="@style/AppTheme.Slidable" />
|
2019-08-18 10:03:58 +02:00
|
|
|
<activity
|
2020-11-18 11:54:13 +01:00
|
|
|
android:name=".activities.AccountPostsActivity"
|
|
|
|
android:parentActivityName=".activities.MainActivity"
|
2020-06-17 16:11:18 +02:00
|
|
|
android:theme="@style/AppTheme.Slidable" />
|
2019-08-13 08:25:16 +02:00
|
|
|
<activity
|
2020-11-18 11:54:13 +01:00
|
|
|
android:name=".activities.EditCommentActivity"
|
2019-08-13 09:29:27 +02:00
|
|
|
android:label="@string/edit_comment_activity_label"
|
2020-11-18 11:54:13 +01:00
|
|
|
android:parentActivityName=".activities.MainActivity"
|
2020-08-18 10:48:27 +02:00
|
|
|
android:theme="@style/AppTheme.NoActionBar"
|
2019-08-13 08:25:16 +02:00
|
|
|
android:windowSoftInputMode="adjustResize" />
|
2019-08-12 11:20:33 +02:00
|
|
|
<activity
|
2020-11-18 11:54:13 +01:00
|
|
|
android:name=".activities.EditPostActivity"
|
2019-08-13 09:29:27 +02:00
|
|
|
android:label="@string/edit_post_activity_label"
|
2020-11-18 11:54:13 +01:00
|
|
|
android:parentActivityName=".activities.MainActivity"
|
2020-06-17 16:11:18 +02:00
|
|
|
android:theme="@style/AppTheme.Slidable"
|
2019-08-12 11:20:33 +02:00
|
|
|
android:windowSoftInputMode="adjustResize" />
|
2019-08-05 09:28:53 +02:00
|
|
|
<activity
|
2020-12-23 04:54:20 +01:00
|
|
|
android:name=".activities.FilteredPostsActivity"
|
2020-11-18 11:54:13 +01:00
|
|
|
android:parentActivityName=".activities.MainActivity"
|
2020-06-17 16:11:18 +02:00
|
|
|
android:theme="@style/AppTheme.Slidable" />
|
2019-08-05 04:30:22 +02:00
|
|
|
<activity
|
2020-11-18 11:54:13 +01:00
|
|
|
android:name=".activities.SearchSubredditsResultActivity"
|
2019-08-05 04:30:22 +02:00
|
|
|
android:label="@string/search_subreddits_activity_label"
|
2020-11-18 11:54:13 +01:00
|
|
|
android:parentActivityName=".activities.MainActivity"
|
2020-06-17 16:11:18 +02:00
|
|
|
android:theme="@style/AppTheme.Slidable" />
|
2020-11-18 11:54:13 +01:00
|
|
|
<activity android:name=".activities.LinkResolverActivity">
|
2019-08-02 07:51:32 +02:00
|
|
|
<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="www.reddit.com"
|
|
|
|
android:scheme="https" />
|
2019-08-05 11:44:00 +02:00
|
|
|
<data
|
|
|
|
android:host="reddit.com"
|
|
|
|
android:scheme="https" />
|
|
|
|
<data
|
|
|
|
android:host="amp.reddit.com"
|
|
|
|
android:scheme="https" />
|
|
|
|
<data
|
|
|
|
android:host="m.reddit.com"
|
|
|
|
android:scheme="https" />
|
2019-09-13 08:54:32 +02:00
|
|
|
<data
|
|
|
|
android:host="old.reddit.com"
|
|
|
|
android:scheme="https" />
|
|
|
|
<data
|
|
|
|
android:host="new.reddit.com"
|
|
|
|
android:scheme="https" />
|
|
|
|
<data
|
|
|
|
android:host="np.reddit.com"
|
|
|
|
android:scheme="https" />
|
|
|
|
<data
|
|
|
|
android:host="reddit.app.link"
|
|
|
|
android:scheme="https" />
|
|
|
|
<data
|
|
|
|
android:host="redd.it"
|
|
|
|
android:scheme="https" />
|
|
|
|
<data
|
|
|
|
android:host="s.reddit.com"
|
|
|
|
android:scheme="https" />
|
2021-04-01 03:14:36 +02:00
|
|
|
<data
|
|
|
|
android:host="click.redditmail.com"
|
|
|
|
android:scheme="https" />
|
2019-09-13 08:54:32 +02:00
|
|
|
<data
|
|
|
|
android:host="www.reddit.com"
|
|
|
|
android:scheme="http" />
|
|
|
|
<data
|
|
|
|
android:host="reddit.com"
|
|
|
|
android:scheme="http" />
|
|
|
|
<data
|
|
|
|
android:host="amp.reddit.com"
|
|
|
|
android:scheme="http" />
|
|
|
|
<data
|
|
|
|
android:host="m.reddit.com"
|
|
|
|
android:scheme="http" />
|
|
|
|
<data
|
|
|
|
android:host="old.reddit.com"
|
|
|
|
android:scheme="http" />
|
|
|
|
<data
|
|
|
|
android:host="new.reddit.com"
|
|
|
|
android:scheme="http" />
|
|
|
|
<data
|
|
|
|
android:host="np.reddit.com"
|
|
|
|
android:scheme="http" />
|
|
|
|
<data
|
|
|
|
android:host="reddit.app.link"
|
|
|
|
android:scheme="http" />
|
|
|
|
<data
|
|
|
|
android:host="redd.it"
|
|
|
|
android:scheme="http" />
|
|
|
|
<data
|
|
|
|
android:host="s.reddit.com"
|
|
|
|
android:scheme="http" />
|
2021-04-01 03:14:36 +02:00
|
|
|
<data
|
|
|
|
android:host="click.redditmail.com"
|
|
|
|
android:scheme="http" />
|
2019-08-02 07:51:32 +02:00
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2019-07-18 17:59:14 +02:00
|
|
|
<activity
|
2020-11-18 11:54:13 +01:00
|
|
|
android:name=".activities.SearchActivity"
|
2019-07-18 17:59:14 +02:00
|
|
|
android:label="@string/search_activity_label"
|
2020-11-18 11:54:13 +01:00
|
|
|
android:parentActivityName=".activities.MainActivity"
|
2020-10-28 09:28:19 +01:00
|
|
|
android:theme="@style/AppTheme.Slidable"
|
|
|
|
android:windowSoftInputMode="adjustPan" />
|
2019-07-18 06:00:46 +02:00
|
|
|
<activity
|
2020-11-18 11:54:13 +01:00
|
|
|
android:name=".activities.RulesActivity"
|
2019-07-18 06:00:46 +02:00
|
|
|
android:label="@string/rules_activity_label"
|
2020-11-18 11:54:13 +01:00
|
|
|
android:parentActivityName=".activities.MainActivity"
|
2020-06-17 16:11:18 +02:00
|
|
|
android:theme="@style/AppTheme.Slidable" />
|
2019-07-14 15:29:10 +02:00
|
|
|
<activity
|
2020-11-18 11:54:13 +01:00
|
|
|
android:name=".activities.PostVideoActivity"
|
2019-07-14 15:29:10 +02:00
|
|
|
android:label="@string/post_video_activity_label"
|
2020-11-18 11:54:13 +01:00
|
|
|
android:parentActivityName=".activities.MainActivity"
|
2020-07-14 13:43:26 +02:00
|
|
|
android:theme="@style/AppTheme.NoActionBar"
|
2019-08-06 11:35:54 +02:00
|
|
|
android:windowSoftInputMode="adjustResize" />
|
2019-07-12 18:05:38 +02:00
|
|
|
<activity
|
2020-11-18 11:54:13 +01:00
|
|
|
android:name=".activities.PostImageActivity"
|
2019-07-12 18:05:38 +02:00
|
|
|
android:label="@string/post_image_activity_label"
|
2020-11-18 11:54:13 +01:00
|
|
|
android:parentActivityName=".activities.MainActivity"
|
2020-07-14 13:43:26 +02:00
|
|
|
android:theme="@style/AppTheme.NoActionBar"
|
2019-08-06 11:35:54 +02:00
|
|
|
android:windowSoftInputMode="adjustResize" />
|
2019-07-12 03:35:05 +02:00
|
|
|
<activity
|
2020-11-18 11:54:13 +01:00
|
|
|
android:name=".activities.PostLinkActivity"
|
2019-07-12 03:35:05 +02:00
|
|
|
android:label="@string/post_link_activity_label"
|
2020-11-18 11:54:13 +01:00
|
|
|
android:parentActivityName=".activities.MainActivity"
|
2020-07-14 13:43:26 +02:00
|
|
|
android:theme="@style/AppTheme.NoActionBar"
|
2019-08-06 11:35:54 +02:00
|
|
|
android:windowSoftInputMode="adjustResize" />
|
2019-07-11 10:32:27 +02:00
|
|
|
<activity
|
2020-11-18 11:54:13 +01:00
|
|
|
android:name=".activities.SubscribedThingListingActivity"
|
2019-07-10 09:59:47 +02:00
|
|
|
android:label="@string/subscriptions"
|
2020-11-18 11:54:13 +01:00
|
|
|
android:parentActivityName=".activities.MainActivity"
|
2020-06-17 16:11:18 +02:00
|
|
|
android:theme="@style/AppTheme.Slidable" />
|
2019-07-10 09:59:47 +02:00
|
|
|
<activity
|
2020-11-18 11:54:13 +01:00
|
|
|
android:name=".activities.SubredditSelectionActivity"
|
2019-07-10 09:59:47 +02:00
|
|
|
android:label="@string/subreddit_selection_activity_label"
|
2020-11-18 11:54:13 +01:00
|
|
|
android:parentActivityName=".activities.MainActivity"
|
2020-06-17 16:11:18 +02:00
|
|
|
android:theme="@style/AppTheme.Slidable" />
|
2019-07-10 09:59:47 +02:00
|
|
|
<activity
|
2020-11-18 11:54:13 +01:00
|
|
|
android:name=".activities.PostTextActivity"
|
2019-07-10 09:59:47 +02:00
|
|
|
android:label="@string/post_text_activity_label"
|
2020-11-18 11:54:13 +01:00
|
|
|
android:parentActivityName=".activities.MainActivity"
|
2020-07-14 13:43:26 +02:00
|
|
|
android:theme="@style/AppTheme.NoActionBar"
|
2019-08-05 09:28:53 +02:00
|
|
|
android:windowSoftInputMode="adjustResize" />
|
2019-06-13 06:16:04 +02:00
|
|
|
<activity
|
2020-11-18 11:54:13 +01:00
|
|
|
android:name=".activities.CommentActivity"
|
2019-06-13 06:16:04 +02:00
|
|
|
android:label="@string/comment_activity_label"
|
2020-11-18 11:54:13 +01:00
|
|
|
android:parentActivityName=".activities.MainActivity"
|
2020-08-18 10:48:27 +02:00
|
|
|
android:theme="@style/AppTheme.NoActionBar"
|
2020-06-06 15:33:03 +02:00
|
|
|
android:windowSoftInputMode="adjustResize" />
|
2019-06-13 06:16:04 +02:00
|
|
|
<activity
|
2020-11-18 11:54:13 +01:00
|
|
|
android:name=".activities.SearchResultActivity"
|
2019-02-22 06:34:24 +01:00
|
|
|
android:label="@string/search_activity_label"
|
2020-11-18 11:54:13 +01:00
|
|
|
android:parentActivityName=".activities.MainActivity"
|
2020-06-17 16:11:18 +02:00
|
|
|
android:theme="@style/AppTheme.Slidable" />
|
2018-07-26 17:04:44 +02:00
|
|
|
<activity
|
2020-11-18 11:54:13 +01:00
|
|
|
android:name=".activities.MainActivity"
|
2019-11-12 12:31:28 +01:00
|
|
|
android:label="@string/application_name"
|
2020-10-28 09:28:19 +01:00
|
|
|
android:theme="@style/AppTheme.Launcher"
|
|
|
|
android:windowSoftInputMode="adjustPan">
|
2018-07-26 17:04:44 +02:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
2019-08-02 07:51:32 +02:00
|
|
|
|
2018-07-26 17:04:44 +02:00
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
<activity
|
2020-11-18 11:54:13 +01:00
|
|
|
android:name=".activities.LoginActivity"
|
2018-07-26 17:04:44 +02:00
|
|
|
android:label="@string/login_activity_label"
|
2020-11-18 11:54:13 +01:00
|
|
|
android:parentActivityName=".activities.MainActivity"
|
2020-06-17 16:11:18 +02:00
|
|
|
android:theme="@style/AppTheme.Slidable" />
|
2018-07-26 17:04:44 +02:00
|
|
|
<activity
|
2020-11-18 11:54:13 +01:00
|
|
|
android:name=".activities.ViewImageOrGifActivity"
|
|
|
|
android:parentActivityName=".activities.MainActivity"
|
2020-07-14 16:45:21 +02:00
|
|
|
android:theme="@style/AppTheme.SlidableWithActionBar" />
|
2018-07-26 17:04:44 +02:00
|
|
|
<activity
|
2020-11-18 11:54:13 +01:00
|
|
|
android:name=".activities.ViewVideoActivity"
|
2020-04-02 16:15:47 +02:00
|
|
|
android:configChanges="orientation|screenSize|layoutDirection"
|
2020-11-18 11:54:13 +01:00
|
|
|
android:parentActivityName=".activities.MainActivity"
|
2020-07-15 05:51:29 +02:00
|
|
|
android:theme="@style/AppTheme.Draggable" />
|
2018-07-26 17:04:44 +02:00
|
|
|
<activity
|
2020-11-18 11:54:13 +01:00
|
|
|
android:name=".activities.ViewPostDetailActivity"
|
|
|
|
android:parentActivityName=".activities.MainActivity"
|
2020-06-17 16:11:18 +02:00
|
|
|
android:theme="@style/AppTheme.Slidable" />
|
2018-07-30 17:27:52 +02:00
|
|
|
<activity
|
2020-11-18 11:54:13 +01:00
|
|
|
android:name=".activities.ViewSubredditDetailActivity"
|
|
|
|
android:parentActivityName=".activities.MainActivity"
|
2020-06-17 16:11:18 +02:00
|
|
|
android:theme="@style/AppTheme.SlidableWithTranslucentWindow" />
|
2018-09-21 17:35:57 +02:00
|
|
|
<activity
|
2020-11-18 11:54:13 +01:00
|
|
|
android:name=".activities.ViewUserDetailActivity"
|
|
|
|
android:parentActivityName=".activities.MainActivity"
|
2020-06-17 16:11:18 +02:00
|
|
|
android:theme="@style/AppTheme.SlidableWithTranslucentWindow" />
|
2019-09-18 05:10:16 +02:00
|
|
|
|
2019-07-24 12:51:57 +02:00
|
|
|
<provider
|
|
|
|
android:name="androidx.core.content.FileProvider"
|
2020-11-06 12:33:45 +01:00
|
|
|
android:authorities="ml.docilealligator.infinityforreddit.provider"
|
2019-07-24 12:51:57 +02:00
|
|
|
android:exported="false"
|
|
|
|
android:grantUriPermissions="true">
|
|
|
|
<meta-data
|
|
|
|
android:name="android.support.FILE_PROVIDER_PATHS"
|
2019-08-02 07:51:32 +02:00
|
|
|
android:resource="@xml/file_paths" />
|
2019-07-24 12:51:57 +02:00
|
|
|
</provider>
|
2020-07-09 06:13:45 +02:00
|
|
|
|
2019-08-28 10:41:36 +02:00
|
|
|
<service
|
2020-11-18 11:54:13 +01:00
|
|
|
android:name=".services.SubmitPostService"
|
2019-08-28 10:41:36 +02:00
|
|
|
android:enabled="true"
|
|
|
|
android:exported="false" />
|
2018-07-26 17:04:44 +02:00
|
|
|
</application>
|
2019-08-28 10:41:36 +02:00
|
|
|
|
2020-06-29 07:15:23 +02:00
|
|
|
</manifest>
|