2018-07-26 23:04:44 +08:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2023-07-15 13:06:29 +02:00
|
|
|
xmlns:tools="http://schemas.android.com/tools">
|
2018-07-26 23:04:44 +08:00
|
|
|
|
2020-09-22 23:41:57 +08:00
|
|
|
<queries>
|
|
|
|
<intent>
|
2020-09-28 09:56:58 +08:00
|
|
|
<action android:name="android.support.customtabs.action.CustomTabsService" />
|
2020-09-22 23:41:57 +08:00
|
|
|
</intent>
|
|
|
|
</queries>
|
|
|
|
|
2020-11-09 12:27:21 +08:00
|
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
2019-10-28 17:31:47 +08:00
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
2020-06-15 14:48:16 +08:00
|
|
|
<uses-permission android:name="android.permission.SET_WALLPAPER" />
|
|
|
|
<uses-permission android:name="android.permission.SET_WALLPAPER_HINTS" />
|
2019-10-28 17:31:47 +08:00
|
|
|
<uses-permission
|
|
|
|
android:name="android.permission.WRITE_EXTERNAL_STORAGE"
|
|
|
|
android:maxSdkVersion="22" />
|
|
|
|
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
|
|
|
|
|
2021-07-15 20:20:55 +08:00
|
|
|
<uses-permission-sdk-23
|
|
|
|
android:name="android.permission.WRITE_EXTERNAL_STORAGE"
|
2021-07-15 08:33:44 +08:00
|
|
|
android:maxSdkVersion="28" />
|
2019-10-28 17:31:47 +08:00
|
|
|
|
2020-09-09 15:26:02 +08:00
|
|
|
<uses-permission android:name="android.permission.WAKE_LOCK" />
|
|
|
|
|
2022-12-04 06:15:13 +11:00
|
|
|
<uses-permission android:name="android.permission.POST_NOTIFICATIONS"/>
|
|
|
|
|
2018-07-26 23:04:44 +08:00
|
|
|
<application
|
2022-02-21 22:52:22 +08:00
|
|
|
android:name=".Infinity"
|
2022-02-05 15:19:18 +08:00
|
|
|
android:allowBackup="false"
|
2018-07-26 23:04:44 +08:00
|
|
|
android:icon="@mipmap/ic_launcher"
|
2019-11-12 19:31:28 +08:00
|
|
|
android:label="@string/application_name"
|
2018-07-26 23:04:44 +08:00
|
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
|
|
|
android:supportsRtl="true"
|
2019-01-07 19:03:49 +08:00
|
|
|
android:theme="@style/AppTheme"
|
2019-11-12 19:31:28 +08:00
|
|
|
android:usesCleartextTraffic="true"
|
|
|
|
tools:replace="android:label">
|
2022-07-13 22:05:19 +08:00
|
|
|
<activity
|
|
|
|
android:name=".activities.HistoryActivity"
|
|
|
|
android:exported="false"
|
|
|
|
android:label="@string/history_activity_label"
|
|
|
|
android:parentActivityName=".activities.MainActivity"
|
|
|
|
android:theme="@style/AppTheme.Slidable" />
|
2022-02-21 22:52:22 +08:00
|
|
|
<activity
|
|
|
|
android:name=".activities.PostPollActivity"
|
|
|
|
android:label="@string/post_poll_activity_label"
|
|
|
|
android:parentActivityName=".activities.MainActivity"
|
|
|
|
android:theme="@style/AppTheme.NoActionBar"
|
2022-05-14 19:17:09 +08:00
|
|
|
android:windowSoftInputMode="adjustResize" />
|
2021-11-29 21:16:15 +08:00
|
|
|
<activity
|
|
|
|
android:name=".activities.EditProfileActivity"
|
2021-11-13 22:11:56 +08:00
|
|
|
android:label="@string/edit_profile_activity_label"
|
|
|
|
android:parentActivityName=".activities.MainActivity"
|
|
|
|
android:theme="@style/AppTheme.Slidable"
|
|
|
|
android:windowSoftInputMode="adjustPan" />
|
2021-09-04 23:41:44 +08:00
|
|
|
<activity
|
|
|
|
android:name=".activities.WikiActivity"
|
2021-08-02 17:12:33 +08:00
|
|
|
android:label="@string/wiki_activity_label"
|
|
|
|
android:parentActivityName=".activities.MainActivity"
|
|
|
|
android:theme="@style/AppTheme.Slidable" />
|
|
|
|
<activity
|
|
|
|
android:name=".activities.TrendingActivity"
|
2021-07-18 22:26:02 +08:00
|
|
|
android:label="@string/trending_activity_label"
|
|
|
|
android:parentActivityName=".activities.MainActivity"
|
2021-07-18 22:39:00 +08:00
|
|
|
android:theme="@style/AppTheme.Slidable" />
|
2021-07-18 22:26:02 +08:00
|
|
|
<activity
|
|
|
|
android:name=".activities.PostGalleryActivity"
|
2021-07-15 22:47:21 +08:00
|
|
|
android:label="@string/post_gallery_activity_label"
|
|
|
|
android:parentActivityName=".activities.MainActivity"
|
|
|
|
android:theme="@style/AppTheme.NoActionBar"
|
|
|
|
android:windowSoftInputMode="adjustResize" />
|
2021-06-16 18:26:32 +08:00
|
|
|
<activity
|
|
|
|
android:name=".activities.LockScreenActivity"
|
2021-05-05 15:51:34 +08:00
|
|
|
android:theme="@style/AppTheme.NoActionBar" />
|
2021-03-11 22:08:27 +08:00
|
|
|
<activity
|
|
|
|
android:name=".activities.WebViewActivity"
|
2022-07-13 22:05:19 +08:00
|
|
|
android:configChanges="orientation|screenSize"
|
2021-03-11 22:08:27 +08:00
|
|
|
android:label=""
|
|
|
|
android:parentActivityName=".activities.MainActivity"
|
2022-07-13 22:05:19 +08:00
|
|
|
android:theme="@style/AppTheme.NoActionBar" />
|
2021-03-11 22:08:27 +08:00
|
|
|
<activity
|
|
|
|
android:name=".activities.SuicidePreventionActivity"
|
2021-03-07 00:05:09 +08:00
|
|
|
android:parentActivityName=".activities.MainActivity"
|
|
|
|
android:theme="@style/AppTheme.NoActionBar" />
|
|
|
|
<activity
|
|
|
|
android:name=".activities.MultiredditSelectionActivity"
|
2021-01-05 16:00:45 +08:00
|
|
|
android:label="@string/multireddit_selection_activity_label"
|
|
|
|
android:parentActivityName=".activities.MainActivity"
|
2021-03-07 00:05:09 +08:00
|
|
|
android:theme="@style/AppTheme.NoActionBar" />
|
|
|
|
<activity
|
|
|
|
android:name=".activities.SearchUsersResultActivity"
|
2021-01-05 16:00:45 +08:00
|
|
|
android:label="@string/search_users_result_activity_label"
|
|
|
|
android:parentActivityName=".activities.MainActivity"
|
|
|
|
android:theme="@style/AppTheme.NoActionBar" />
|
2021-01-04 17:13:31 +08:00
|
|
|
<activity
|
|
|
|
android:name=".activities.PostFilterUsageListingActivity"
|
2020-12-26 15:25:40 +08:00
|
|
|
android:parentActivityName=".activities.SettingsActivity"
|
|
|
|
android:theme="@style/AppTheme.NoActionBar" />
|
|
|
|
<activity
|
|
|
|
android:name=".activities.PostFilterPreferenceActivity"
|
2020-12-26 00:26:30 +08:00
|
|
|
android:label="@string/post_filter_preference_activity_label"
|
2020-12-11 19:37:45 +08:00
|
|
|
android:parentActivityName=".activities.SettingsActivity"
|
2020-12-26 00:26:30 +08:00
|
|
|
android:theme="@style/AppTheme.NoActionBar" />
|
|
|
|
<activity
|
|
|
|
android:name=".activities.CustomizePostFilterActivity"
|
2020-12-11 19:37:45 +08:00
|
|
|
android:label="@string/customize_post_filter_activity_label"
|
2020-12-26 00:26:30 +08:00
|
|
|
android:parentActivityName=".activities.SettingsActivity"
|
2020-12-11 19:37:45 +08:00
|
|
|
android:theme="@style/AppTheme.NoActionBar"
|
|
|
|
android:windowSoftInputMode="adjustResize" />
|
2020-10-28 08:59:57 +08:00
|
|
|
<activity
|
2020-11-18 18:54:13 +08:00
|
|
|
android:name=".activities.FetchRandomSubredditOrPostActivity"
|
|
|
|
android:parentActivityName=".activities.MainActivity"
|
2020-10-04 16:55:19 +08:00
|
|
|
android:theme="@style/AppTheme.NoActionBar" />
|
|
|
|
<activity
|
2020-11-18 18:54:13 +08:00
|
|
|
android:name=".activities.GiveAwardActivity"
|
2020-09-28 09:56:58 +08:00
|
|
|
android:label="@string/give_award_activity_label"
|
2020-11-18 18:54:13 +08:00
|
|
|
android:parentActivityName=".activities.MainActivity"
|
2020-10-04 16:55:19 +08:00
|
|
|
android:theme="@style/AppTheme.Slidable" />
|
2020-09-28 09:56:58 +08:00
|
|
|
<activity
|
2020-11-18 18:54:13 +08:00
|
|
|
android:name=".activities.SelectUserFlairActivity"
|
|
|
|
android:parentActivityName=".activities.MainActivity"
|
2020-09-17 11:08:06 +08:00
|
|
|
android:theme="@style/AppTheme.Slidable" />
|
|
|
|
<activity
|
2020-11-18 18:54:13 +08:00
|
|
|
android:name=".activities.FullMarkdownActivity"
|
|
|
|
android:parentActivityName=".activities.MainActivity"
|
2020-09-14 09:06:31 +08:00
|
|
|
android:theme="@style/AppTheme.Slidable" />
|
|
|
|
<activity
|
2020-11-18 18:54:13 +08:00
|
|
|
android:name=".activities.SubmitCrosspostActivity"
|
2020-09-08 10:55:32 +08:00
|
|
|
android:label="@string/submit_crosspost_activity_label"
|
2020-11-18 18:54:13 +08:00
|
|
|
android:parentActivityName=".activities.MainActivity"
|
2020-09-08 10:55:32 +08:00
|
|
|
android:theme="@style/AppTheme.NoActionBar"
|
2020-09-14 09:06:31 +08:00
|
|
|
android:windowSoftInputMode="adjustResize" />
|
2020-09-08 10:55:32 +08:00
|
|
|
|
2020-09-06 11:54:50 +08:00
|
|
|
<service
|
2020-11-18 18:54:13 +08:00
|
|
|
android:name=".services.DownloadMediaService"
|
2020-09-06 11:54:50 +08:00
|
|
|
android:enabled="true"
|
2020-09-08 10:55:32 +08:00
|
|
|
android:exported="false" />
|
2020-09-06 11:54:50 +08:00
|
|
|
|
|
|
|
<activity
|
2020-11-18 18:54:13 +08:00
|
|
|
android:name=".activities.ViewRedditGalleryActivity"
|
2020-07-16 22:02:06 +08:00
|
|
|
android:configChanges="orientation|screenSize|layoutDirection"
|
2020-11-18 18:54:13 +08:00
|
|
|
android:parentActivityName=".activities.MainActivity"
|
2020-07-16 22:02:06 +08:00
|
|
|
android:theme="@style/AppTheme.Draggable" />
|
|
|
|
<activity
|
2020-11-18 18:54:13 +08:00
|
|
|
android:name=".activities.SendPrivateMessageActivity"
|
2020-07-07 23:35:18 +08:00
|
|
|
android:label="@string/send_private_message_activity_label"
|
2020-11-18 18:54:13 +08:00
|
|
|
android:parentActivityName=".activities.MainActivity"
|
2020-07-07 23:35:18 +08:00
|
|
|
android:theme="@style/AppTheme.NoActionBar"
|
|
|
|
android:windowSoftInputMode="adjustResize" />
|
2020-06-17 09:38:36 +08:00
|
|
|
|
2020-06-06 21:33:03 +08:00
|
|
|
<service
|
2020-11-18 18:54:13 +08:00
|
|
|
android:name=".services.DownloadRedditVideoService"
|
2020-06-06 21:33:03 +08:00
|
|
|
android:enabled="true"
|
2020-06-17 09:38:36 +08:00
|
|
|
android:exported="false" />
|
2020-06-06 21:33:03 +08:00
|
|
|
|
2020-07-07 23:35:18 +08:00
|
|
|
<activity
|
2020-11-18 18:54:13 +08:00
|
|
|
android:name=".activities.ViewPrivateMessagesActivity"
|
|
|
|
android:parentActivityName=".activities.MainActivity"
|
2020-07-14 19:43:26 +08:00
|
|
|
android:theme="@style/AppTheme.NoActionBar"
|
2020-07-02 11:13:10 +08:00
|
|
|
android:windowSoftInputMode="adjustResize" />
|
2020-06-03 19:02:46 +08:00
|
|
|
<activity
|
2020-11-18 18:54:13 +08:00
|
|
|
android:name=".activities.ViewImgurMediaActivity"
|
2020-06-03 19:02:46 +08:00
|
|
|
android:configChanges="orientation|screenSize|layoutDirection"
|
2020-11-18 18:54:13 +08:00
|
|
|
android:parentActivityName=".activities.MainActivity"
|
2020-07-15 11:51:29 +08:00
|
|
|
android:theme="@style/AppTheme.Draggable" />
|
2020-05-28 22:16:07 +08:00
|
|
|
<activity
|
2020-11-18 18:54:13 +08:00
|
|
|
android:name=".activities.ReportActivity"
|
2020-05-03 16:47:33 +08:00
|
|
|
android:label="@string/report_activity_label"
|
2020-11-18 18:54:13 +08:00
|
|
|
android:parentActivityName=".activities.MainActivity"
|
2020-06-17 16:11:18 +02:00
|
|
|
android:theme="@style/AppTheme.Slidable" />
|
2020-05-03 16:47:33 +08:00
|
|
|
<activity
|
2021-01-05 23:17:56 +08:00
|
|
|
android:name=".activities.SelectedSubredditsAndUsersActivity"
|
2020-04-04 16:10:25 +08:00
|
|
|
android:label="@string/selected_subeddits_activity_label"
|
2020-11-18 18:54:13 +08:00
|
|
|
android:parentActivityName=".activities.MainActivity"
|
2020-06-17 16:11:18 +02:00
|
|
|
android:theme="@style/AppTheme.Slidable" />
|
2020-05-03 16:47:33 +08:00
|
|
|
<activity
|
2020-11-18 18:54:13 +08:00
|
|
|
android:name=".activities.EditMultiRedditActivity"
|
2020-04-04 16:10:25 +08:00
|
|
|
android:label="@string/edit_multi_reddit_activity_label"
|
2020-11-18 18:54:13 +08:00
|
|
|
android:parentActivityName=".activities.MainActivity"
|
2020-06-17 16:11:18 +02:00
|
|
|
android:theme="@style/AppTheme.Slidable" />
|
2020-04-04 16:10:25 +08:00
|
|
|
<activity
|
2020-11-18 18:54:13 +08:00
|
|
|
android:name=".activities.CustomThemePreviewActivity"
|
2020-04-02 22:15:47 +08:00
|
|
|
android:label="@string/theme_preview_activity_label"
|
2020-11-18 18:54:13 +08:00
|
|
|
android:parentActivityName=".activities.MainActivity"
|
2022-07-28 23:42:46 +10:00
|
|
|
android:theme="@style/AppTheme.Slidable" />
|
2020-04-02 22:15:47 +08:00
|
|
|
<activity
|
2020-11-18 18:54:13 +08:00
|
|
|
android:name=".activities.CustomThemeListingActivity"
|
2020-03-24 14:14:47 +08:00
|
|
|
android:label="@string/custom_theme_listing_activity_label"
|
2020-11-18 18:54:13 +08:00
|
|
|
android:parentActivityName=".activities.MainActivity"
|
2020-03-24 14:14:47 +08:00
|
|
|
android:theme="@style/AppTheme.NoActionBar" />
|
2020-03-19 22:30:57 +08:00
|
|
|
<activity
|
2020-11-18 18:54:13 +08:00
|
|
|
android:name=".activities.CustomizeThemeActivity"
|
2020-03-27 00:30:05 +08:00
|
|
|
android:label="@string/customize_theme_activity_label"
|
2020-11-18 18:54:13 +08:00
|
|
|
android:parentActivityName=".activities.MainActivity"
|
2020-03-19 12:20:23 +08:00
|
|
|
android:theme="@style/AppTheme.NoActionBar" />
|
2020-02-18 18:16:04 +08:00
|
|
|
<activity
|
2020-11-18 18:54:13 +08:00
|
|
|
android:name=".activities.SubredditMultiselectionActivity"
|
2023-07-24 21:25:46 +02:00
|
|
|
android:label="@string/community_multiselection_activity_label"
|
2020-11-18 18:54:13 +08:00
|
|
|
android:parentActivityName=".activities.MainActivity"
|
2020-06-17 16:11:18 +02:00
|
|
|
android:theme="@style/AppTheme.Slidable" />
|
2020-02-18 18:16:04 +08:00
|
|
|
<activity
|
2020-11-18 18:54:13 +08:00
|
|
|
android:name=".activities.CreateMultiRedditActivity"
|
2020-02-12 18:11:03 +08:00
|
|
|
android:label="@string/create_multi_reddit_activity_label"
|
2020-11-18 18:54:13 +08:00
|
|
|
android:parentActivityName=".activities.MainActivity"
|
2020-06-17 16:11:18 +02:00
|
|
|
android:theme="@style/AppTheme.Slidable"
|
2020-02-12 18:11:03 +08:00
|
|
|
android:windowSoftInputMode="adjustResize" />
|
2019-12-30 20:44:40 +08:00
|
|
|
<activity
|
2020-11-18 18:54:13 +08: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 11:10:16 +08:00
|
|
|
<activity
|
2020-11-18 18:54:13 +08:00
|
|
|
android:name=".activities.AccountSavedThingActivity"
|
2020-02-12 18:11:03 +08:00
|
|
|
android:label="@string/account_saved_thing_activity_label"
|
2020-11-18 18:54:13 +08:00
|
|
|
android:parentActivityName=".activities.MainActivity"
|
2020-06-17 16:11:18 +02:00
|
|
|
android:theme="@style/AppTheme.Slidable" />
|
2021-11-29 21:16:15 +08:00
|
|
|
<activity
|
|
|
|
android:name=".activities.ShareDataResolverActivity"
|
2022-05-14 19:17:09 +08:00
|
|
|
android:exported="true">
|
2022-07-13 22:05:19 +08:00
|
|
|
<intent-filter android:label="@string/submit_post">
|
2019-08-28 16:41:36 +08:00
|
|
|
<action android:name="android.intent.action.SEND" />
|
2019-09-18 11:10:16 +08:00
|
|
|
|
2019-08-28 16:41:36 +08:00
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
2019-09-18 11:10:16 +08:00
|
|
|
|
2019-08-28 16:41:36 +08:00
|
|
|
<data android:mimeType="image/*" />
|
|
|
|
</intent-filter>
|
2022-07-13 22:05:19 +08:00
|
|
|
<intent-filter android:label="@string/submit_post">
|
2019-08-28 16:41:36 +08:00
|
|
|
<action android:name="android.intent.action.SEND" />
|
2019-09-18 11:10:16 +08:00
|
|
|
|
2019-08-28 16:41:36 +08:00
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
2019-09-18 11:10:16 +08:00
|
|
|
|
2019-08-28 16:41:36 +08:00
|
|
|
<data android:mimeType="video/*" />
|
|
|
|
</intent-filter>
|
2022-07-13 22:05:19 +08:00
|
|
|
<intent-filter android:label="@string/submit_post">
|
2019-08-28 16:41:36 +08:00
|
|
|
<action android:name="android.intent.action.SEND" />
|
2019-09-18 11:10:16 +08:00
|
|
|
|
2019-08-28 16:41:36 +08:00
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
2019-09-18 11:10:16 +08:00
|
|
|
|
2019-08-28 16:41:36 +08:00
|
|
|
<data android:mimeType="text/plain" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2019-08-21 16:21:17 +08:00
|
|
|
<activity
|
2020-11-18 18:54:13 +08:00
|
|
|
android:name=".activities.SettingsActivity"
|
2019-09-24 08:51:56 +08:00
|
|
|
android:label="@string/settings_activity_label"
|
2020-11-18 18:54:13 +08:00
|
|
|
android:parentActivityName=".activities.MainActivity"
|
2019-08-21 16:21:17 +08:00
|
|
|
android:theme="@style/PreferenceActivityTheme" />
|
2019-08-18 16:03:58 +08:00
|
|
|
<activity
|
2020-11-18 18:54:13 +08:00
|
|
|
android:name=".activities.InboxActivity"
|
2019-08-21 16:21:17 +08:00
|
|
|
android:label="@string/view_message_activity_label"
|
2020-11-18 18:54:13 +08:00
|
|
|
android:parentActivityName=".activities.MainActivity"
|
2020-06-17 16:11:18 +02:00
|
|
|
android:theme="@style/AppTheme.Slidable" />
|
2019-08-18 16:03:58 +08:00
|
|
|
<activity
|
2020-11-18 18:54:13 +08: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 14:25:16 +08:00
|
|
|
<activity
|
2020-11-18 18:54:13 +08:00
|
|
|
android:name=".activities.EditCommentActivity"
|
2019-08-13 15:29:27 +08:00
|
|
|
android:label="@string/edit_comment_activity_label"
|
2020-11-18 18:54:13 +08:00
|
|
|
android:parentActivityName=".activities.MainActivity"
|
2020-08-18 16:48:27 +08:00
|
|
|
android:theme="@style/AppTheme.NoActionBar"
|
2019-08-13 14:25:16 +08:00
|
|
|
android:windowSoftInputMode="adjustResize" />
|
2019-08-12 17:20:33 +08:00
|
|
|
<activity
|
2020-11-18 18:54:13 +08:00
|
|
|
android:name=".activities.EditPostActivity"
|
2019-08-13 15:29:27 +08:00
|
|
|
android:label="@string/edit_post_activity_label"
|
2020-11-18 18:54:13 +08:00
|
|
|
android:parentActivityName=".activities.MainActivity"
|
2020-06-17 16:11:18 +02:00
|
|
|
android:theme="@style/AppTheme.Slidable"
|
2019-08-12 17:20:33 +08:00
|
|
|
android:windowSoftInputMode="adjustResize" />
|
2019-08-05 15:28:53 +08:00
|
|
|
<activity
|
2020-12-23 11:54:20 +08:00
|
|
|
android:name=".activities.FilteredPostsActivity"
|
2020-11-18 18:54:13 +08:00
|
|
|
android:parentActivityName=".activities.MainActivity"
|
2020-06-17 16:11:18 +02:00
|
|
|
android:theme="@style/AppTheme.Slidable" />
|
2019-08-05 10:30:22 +08:00
|
|
|
<activity
|
2020-11-18 18:54:13 +08:00
|
|
|
android:name=".activities.SearchSubredditsResultActivity"
|
2023-07-24 21:25:46 +02:00
|
|
|
android:label="@string/search_community_activity_label"
|
2020-11-18 18:54:13 +08:00
|
|
|
android:parentActivityName=".activities.MainActivity"
|
2020-06-17 16:11:18 +02:00
|
|
|
android:theme="@style/AppTheme.Slidable" />
|
2021-11-29 21:16:15 +08:00
|
|
|
<activity
|
|
|
|
android:name=".activities.LinkResolverActivity"
|
2021-10-30 21:20:48 +08:00
|
|
|
android:exported="true">
|
2022-07-13 22:05:19 +08:00
|
|
|
<intent-filter android:label="@string/handle_link">
|
2022-05-30 23:20:44 +08:00
|
|
|
<action android:name="android.intent.action.SEND" />
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
|
|
|
|
<data android:mimeType="text/plain" />
|
|
|
|
</intent-filter>
|
2019-08-02 13:51:32 +08:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
2021-11-29 21:16:15 +08:00
|
|
|
|
2019-08-02 13:51:32 +08:00
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
|
|
|
2021-11-29 21:16:15 +08:00
|
|
|
<data android:scheme="https" />
|
|
|
|
<data android:scheme="http" />
|
2023-07-28 21:16:11 +02:00
|
|
|
<data android:host="lemmy.world" />
|
|
|
|
<data android:host="lemmy.ml" />
|
|
|
|
<data android:host="beehaw.org" />
|
|
|
|
<data android:host="lemm.ee" />
|
|
|
|
<data android:host="sh.itjust.works" />
|
|
|
|
<data android:host="feddit.de" />
|
|
|
|
<data android:host="lemmy.fmhy.ml" />
|
|
|
|
<data android:host="lemmy.ca" />
|
|
|
|
<data android:host="www.hexbear.net" />
|
|
|
|
<data android:host="programming.dev" />
|
|
|
|
<data android:host="lemmy.dbzer0.com" />
|
|
|
|
<data android:host="lemmy.blahaj.zone" />
|
|
|
|
<data android:host="lemmy.one" />
|
|
|
|
<data android:host="vlemmy.net" />
|
|
|
|
<data android:host="lemmy.sdf.org" />
|
|
|
|
<data android:host="discuss.tchncs.de" />
|
|
|
|
<data android:host="lemmygrad.ml" />
|
|
|
|
<data android:host="sopuli.xyz" />
|
|
|
|
<data android:host="reddthat.com" />
|
|
|
|
<data android:host="aussie.zone" />
|
|
|
|
<data android:host="feddit.uk" />
|
|
|
|
<data android:host="feddit.nl" />
|
|
|
|
<data android:host="midwest.social" />
|
|
|
|
<data android:host="infosec.pub" />
|
|
|
|
<data android:host="feddit.it" />
|
|
|
|
<data android:host="ttrpg.network" />
|
|
|
|
<data android:host="pawb.social" />
|
|
|
|
<data android:host="lemmy.zip" />
|
|
|
|
<data android:host="startrek.website" />
|
|
|
|
<data android:host="burggit.moe" />
|
|
|
|
<data android:host="slrpnk.net" />
|
|
|
|
<data android:host="mander.xyz" />
|
|
|
|
<data android:host="lemmy.eco.br" />
|
|
|
|
<data android:host="lemmy.nz" />
|
|
|
|
<data android:host="dormi.zone" />
|
|
|
|
<data android:host="exploding-heads.com" />
|
|
|
|
<data android:host="delraymisfitsboard.com" />
|
|
|
|
<data android:host="monyet.cc" />
|
|
|
|
<data android:host="feddit.dk" />
|
|
|
|
<data android:host="lemmy.pt" />
|
|
|
|
<data android:host="szmer.info" />
|
|
|
|
<data android:host="yiffit.net" />
|
|
|
|
<data android:host="geddit.social" />
|
|
|
|
<data android:host="waveform.social" />
|
|
|
|
<data android:host="discuss.online" />
|
|
|
|
<data android:host="monero.town" />
|
|
|
|
<data android:host="feddit.cl" />
|
|
|
|
<data android:host="iusearchlinux.fyi" />
|
|
|
|
<data android:host="dataterm.digital" />
|
|
|
|
<data android:host="lemmy.whynotdrs.org" />
|
|
|
|
<data android:host="feddit.ch" />
|
|
|
|
<data android:host="enterprise.lemmy.ml" />
|
|
|
|
<data android:host="lemmy.run" />
|
|
|
|
<data android:host="jlai.lu" />
|
|
|
|
<data android:host="pornlemmy.com" />
|
|
|
|
<data android:host="lemdro.id" />
|
|
|
|
<data android:host="lemmyrs.org" />
|
|
|
|
<data android:host="latte.isnot.coffee" />
|
|
|
|
<data android:host="feddit.nu" />
|
|
|
|
<data android:host="lemmy.film" />
|
|
|
|
<data android:host="bakchodi.org" />
|
|
|
|
<data android:host="mujico.org" />
|
|
|
|
<data android:host="lemmy.studio" />
|
|
|
|
<data android:host="lemmy.toldi.eu" />
|
2021-09-26 00:08:45 -04:00
|
|
|
</intent-filter>
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
2021-11-29 21:16:15 +08:00
|
|
|
|
2021-09-26 00:08:45 -04:00
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
2021-11-29 21:16:15 +08:00
|
|
|
|
2021-09-21 22:10:38 -04:00
|
|
|
<data
|
|
|
|
android:host="www.google.com"
|
2021-11-29 21:16:15 +08:00
|
|
|
android:pathPattern="/amp/s/amp.reddit.com/.*"
|
|
|
|
android:scheme="https" />
|
2019-08-02 13:51:32 +08:00
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2019-07-18 23:59:14 +08:00
|
|
|
<activity
|
2020-11-18 18:54:13 +08:00
|
|
|
android:name=".activities.SearchActivity"
|
2019-07-18 23:59:14 +08:00
|
|
|
android:label="@string/search_activity_label"
|
2020-11-18 18:54:13 +08:00
|
|
|
android:parentActivityName=".activities.MainActivity"
|
2020-10-28 16:28:19 +08:00
|
|
|
android:theme="@style/AppTheme.Slidable"
|
|
|
|
android:windowSoftInputMode="adjustPan" />
|
2019-07-18 12:00:46 +08:00
|
|
|
<activity
|
2020-11-18 18:54:13 +08:00
|
|
|
android:name=".activities.RulesActivity"
|
2019-07-18 12:00:46 +08:00
|
|
|
android:label="@string/rules_activity_label"
|
2020-11-18 18:54:13 +08:00
|
|
|
android:parentActivityName=".activities.MainActivity"
|
2020-06-17 16:11:18 +02:00
|
|
|
android:theme="@style/AppTheme.Slidable" />
|
2019-07-14 21:29:10 +08:00
|
|
|
<activity
|
2020-11-18 18:54:13 +08:00
|
|
|
android:name=".activities.PostVideoActivity"
|
2019-07-14 21:29:10 +08:00
|
|
|
android:label="@string/post_video_activity_label"
|
2020-11-18 18:54:13 +08:00
|
|
|
android:parentActivityName=".activities.MainActivity"
|
2020-07-14 19:43:26 +08:00
|
|
|
android:theme="@style/AppTheme.NoActionBar"
|
2019-08-06 17:35:54 +08:00
|
|
|
android:windowSoftInputMode="adjustResize" />
|
2019-07-13 00:05:38 +08:00
|
|
|
<activity
|
2020-11-18 18:54:13 +08:00
|
|
|
android:name=".activities.PostImageActivity"
|
2019-07-13 00:05:38 +08:00
|
|
|
android:label="@string/post_image_activity_label"
|
2020-11-18 18:54:13 +08:00
|
|
|
android:parentActivityName=".activities.MainActivity"
|
2020-07-14 19:43:26 +08:00
|
|
|
android:theme="@style/AppTheme.NoActionBar"
|
2019-08-06 17:35:54 +08:00
|
|
|
android:windowSoftInputMode="adjustResize" />
|
2019-07-12 09:35:05 +08:00
|
|
|
<activity
|
2020-11-18 18:54:13 +08:00
|
|
|
android:name=".activities.PostLinkActivity"
|
2019-07-12 09:35:05 +08:00
|
|
|
android:label="@string/post_link_activity_label"
|
2020-11-18 18:54:13 +08:00
|
|
|
android:parentActivityName=".activities.MainActivity"
|
2020-07-14 19:43:26 +08:00
|
|
|
android:theme="@style/AppTheme.NoActionBar"
|
2019-08-06 17:35:54 +08:00
|
|
|
android:windowSoftInputMode="adjustResize" />
|
2019-07-11 16:32:27 +08:00
|
|
|
<activity
|
2020-11-18 18:54:13 +08:00
|
|
|
android:name=".activities.SubscribedThingListingActivity"
|
2019-07-10 15:59:47 +08:00
|
|
|
android:label="@string/subscriptions"
|
2020-11-18 18:54:13 +08:00
|
|
|
android:parentActivityName=".activities.MainActivity"
|
2020-06-17 16:11:18 +02:00
|
|
|
android:theme="@style/AppTheme.Slidable" />
|
2019-07-10 15:59:47 +08:00
|
|
|
<activity
|
2020-11-18 18:54:13 +08:00
|
|
|
android:name=".activities.SubredditSelectionActivity"
|
2023-07-24 21:25:46 +02:00
|
|
|
android:label="@string/community_selection_activity_label"
|
2020-11-18 18:54:13 +08:00
|
|
|
android:parentActivityName=".activities.MainActivity"
|
2020-06-17 16:11:18 +02:00
|
|
|
android:theme="@style/AppTheme.Slidable" />
|
2019-07-10 15:59:47 +08:00
|
|
|
<activity
|
2020-11-18 18:54:13 +08:00
|
|
|
android:name=".activities.PostTextActivity"
|
2019-07-10 15:59:47 +08:00
|
|
|
android:label="@string/post_text_activity_label"
|
2020-11-18 18:54:13 +08:00
|
|
|
android:parentActivityName=".activities.MainActivity"
|
2020-07-14 19:43:26 +08:00
|
|
|
android:theme="@style/AppTheme.NoActionBar"
|
2019-08-05 15:28:53 +08:00
|
|
|
android:windowSoftInputMode="adjustResize" />
|
2019-06-13 12:16:04 +08:00
|
|
|
<activity
|
2020-11-18 18:54:13 +08:00
|
|
|
android:name=".activities.CommentActivity"
|
2019-06-13 12:16:04 +08:00
|
|
|
android:label="@string/comment_activity_label"
|
2020-11-18 18:54:13 +08:00
|
|
|
android:parentActivityName=".activities.MainActivity"
|
2020-08-18 16:48:27 +08:00
|
|
|
android:theme="@style/AppTheme.NoActionBar"
|
2020-06-06 21:33:03 +08:00
|
|
|
android:windowSoftInputMode="adjustResize" />
|
2019-06-13 12:16:04 +08:00
|
|
|
<activity
|
2020-11-18 18:54:13 +08:00
|
|
|
android:name=".activities.SearchResultActivity"
|
2019-02-22 13:34:24 +08:00
|
|
|
android:label="@string/search_activity_label"
|
2020-11-18 18:54:13 +08:00
|
|
|
android:parentActivityName=".activities.MainActivity"
|
2020-06-17 16:11:18 +02:00
|
|
|
android:theme="@style/AppTheme.Slidable" />
|
2018-07-26 23:04:44 +08:00
|
|
|
<activity
|
2020-11-18 18:54:13 +08:00
|
|
|
android:name=".activities.MainActivity"
|
2021-11-29 21:16:15 +08:00
|
|
|
android:exported="true"
|
2019-11-12 19:31:28 +08:00
|
|
|
android:label="@string/application_name"
|
2020-10-28 16:28:19 +08:00
|
|
|
android:theme="@style/AppTheme.Launcher"
|
2021-11-29 21:16:15 +08:00
|
|
|
android:windowSoftInputMode="adjustPan">
|
2018-07-26 23:04:44 +08:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
2019-08-02 13:51:32 +08:00
|
|
|
|
2018-07-26 23:04:44 +08:00
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
<activity
|
2020-11-18 18:54:13 +08:00
|
|
|
android:name=".activities.LoginActivity"
|
2023-05-03 20:09:12 -05:00
|
|
|
android:configChanges="orientation|screenLayout|screenSize|layoutDirection"
|
2018-07-26 23:04:44 +08:00
|
|
|
android:label="@string/login_activity_label"
|
2020-11-18 18:54:13 +08:00
|
|
|
android:parentActivityName=".activities.MainActivity"
|
2020-06-17 16:11:18 +02:00
|
|
|
android:theme="@style/AppTheme.Slidable" />
|
2018-07-26 23:04:44 +08:00
|
|
|
<activity
|
2020-11-18 18:54:13 +08:00
|
|
|
android:name=".activities.ViewImageOrGifActivity"
|
|
|
|
android:parentActivityName=".activities.MainActivity"
|
2020-07-14 22:45:21 +08:00
|
|
|
android:theme="@style/AppTheme.SlidableWithActionBar" />
|
2018-07-26 23:04:44 +08:00
|
|
|
<activity
|
2020-11-18 18:54:13 +08:00
|
|
|
android:name=".activities.ViewVideoActivity"
|
2020-04-02 22:15:47 +08:00
|
|
|
android:configChanges="orientation|screenSize|layoutDirection"
|
2020-11-18 18:54:13 +08:00
|
|
|
android:parentActivityName=".activities.MainActivity"
|
2020-07-15 11:51:29 +08:00
|
|
|
android:theme="@style/AppTheme.Draggable" />
|
2018-07-26 23:04:44 +08:00
|
|
|
<activity
|
2020-11-18 18:54:13 +08:00
|
|
|
android:name=".activities.ViewPostDetailActivity"
|
|
|
|
android:parentActivityName=".activities.MainActivity"
|
2021-07-12 19:41:52 +08:00
|
|
|
android:theme="@style/AppTheme.Slidable"
|
|
|
|
android:windowSoftInputMode="adjustPan" />
|
2018-07-30 23:27:52 +08:00
|
|
|
<activity
|
2020-11-18 18:54:13 +08:00
|
|
|
android:name=".activities.ViewSubredditDetailActivity"
|
|
|
|
android:parentActivityName=".activities.MainActivity"
|
2022-07-28 23:42:46 +10:00
|
|
|
android:theme="@style/AppTheme.Slidable" />
|
2018-09-21 23:35:57 +08:00
|
|
|
<activity
|
2020-11-18 18:54:13 +08:00
|
|
|
android:name=".activities.ViewUserDetailActivity"
|
|
|
|
android:parentActivityName=".activities.MainActivity"
|
2022-07-28 23:42:46 +10:00
|
|
|
android:theme="@style/AppTheme.Slidable" />
|
2019-09-18 11:10:16 +08:00
|
|
|
|
2019-07-24 18:51:57 +08:00
|
|
|
<provider
|
|
|
|
android:name="androidx.core.content.FileProvider"
|
2022-09-21 06:57:42 +02:00
|
|
|
android:authorities="${applicationId}.provider"
|
2019-07-24 18:51:57 +08:00
|
|
|
android:exported="false"
|
|
|
|
android:grantUriPermissions="true">
|
|
|
|
<meta-data
|
|
|
|
android:name="android.support.FILE_PROVIDER_PATHS"
|
2019-08-02 13:51:32 +08:00
|
|
|
android:resource="@xml/file_paths" />
|
2019-07-24 18:51:57 +08:00
|
|
|
</provider>
|
2021-04-02 15:21:15 +08:00
|
|
|
<provider
|
|
|
|
android:name="androidx.startup.InitializationProvider"
|
|
|
|
android:authorities="${applicationId}.androidx-startup"
|
|
|
|
android:exported="false"
|
|
|
|
tools:node="merge">
|
|
|
|
<meta-data
|
|
|
|
android:name="com.crazylegend.crashyreporter.initializer.CrashyInitializer"
|
|
|
|
android:value="androidx.startup" />
|
|
|
|
</provider>
|
|
|
|
|
2019-08-28 16:41:36 +08:00
|
|
|
<service
|
2020-11-18 18:54:13 +08:00
|
|
|
android:name=".services.SubmitPostService"
|
2019-08-28 16:41:36 +08:00
|
|
|
android:enabled="true"
|
|
|
|
android:exported="false" />
|
2021-10-30 14:19:35 +07:00
|
|
|
<service
|
|
|
|
android:name=".services.EditProfileService"
|
|
|
|
android:enabled="true"
|
|
|
|
android:exported="false" />
|
2022-05-31 18:00:21 +08:00
|
|
|
|
|
|
|
<receiver android:name=".broadcastreceivers.DownloadedMediaDeleteActionBroadcastReceiver" />
|
2018-07-26 23:04:44 +08:00
|
|
|
</application>
|
2019-08-28 16:41:36 +08:00
|
|
|
|
2020-06-29 13:15:23 +08:00
|
|
|
</manifest>
|