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"
|
|
|
|
package="ml.docilealligator.infinityforreddit">
|
|
|
|
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
2018-07-30 17:27:52 +02:00
|
|
|
|
2018-07-26 17:04:44 +02:00
|
|
|
<uses-permission-sdk-23 android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
2018-07-30 17:27:52 +02:00
|
|
|
|
|
|
|
<uses-permission
|
|
|
|
android:name="android.permission.WRITE_EXTERNAL_STORAGE"
|
2018-07-26 17:04:44 +02:00
|
|
|
android:maxSdkVersion="22" />
|
2019-08-06 11:35:54 +02:00
|
|
|
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
|
|
|
|
|
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"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
|
|
|
android:supportsRtl="true"
|
2019-01-07 12:03:49 +01:00
|
|
|
android:theme="@style/AppTheme"
|
|
|
|
android:usesCleartextTraffic="true">
|
2019-08-14 09:54:08 +02:00
|
|
|
<activity android:name=".AccountPostsActivity"
|
|
|
|
android:parentActivityName=".MainActivity"
|
|
|
|
android:theme="@style/AppTheme.NoActionBar" />
|
2019-08-13 08:25:16 +02:00
|
|
|
<activity
|
|
|
|
android:name=".EditCommentActivity"
|
2019-08-13 09:29:27 +02:00
|
|
|
android:label="@string/edit_comment_activity_label"
|
2019-08-13 08:25:16 +02:00
|
|
|
android:parentActivityName=".MainActivity"
|
|
|
|
android:theme="@style/AppTheme.NoActionBar"
|
|
|
|
android:windowSoftInputMode="adjustResize" />
|
2019-08-12 11:20:33 +02:00
|
|
|
<activity
|
|
|
|
android:name=".EditPostActivity"
|
2019-08-13 09:29:27 +02:00
|
|
|
android:label="@string/edit_post_activity_label"
|
2019-08-12 11:20:33 +02:00
|
|
|
android:parentActivityName=".MainActivity"
|
|
|
|
android:theme="@style/AppTheme.NoActionBar"
|
|
|
|
android:windowSoftInputMode="adjustResize" />
|
2019-08-08 14:05:45 +02:00
|
|
|
|
2019-08-06 11:35:54 +02:00
|
|
|
<service
|
2019-08-06 15:00:16 +02:00
|
|
|
android:name=".SubmitPostService"
|
2019-08-06 11:35:54 +02:00
|
|
|
android:enabled="true"
|
2019-08-08 14:05:45 +02:00
|
|
|
android:exported="false" />
|
2019-08-06 11:35:54 +02:00
|
|
|
|
2019-08-05 09:28:53 +02:00
|
|
|
<activity
|
2019-08-14 10:52:59 +02:00
|
|
|
android:name=".FilteredThingActivity"
|
2019-08-05 09:28:53 +02:00
|
|
|
android:parentActivityName=".MainActivity"
|
|
|
|
android:theme="@style/AppTheme.NoActionBar" />
|
2019-08-05 04:30:22 +02:00
|
|
|
<activity
|
|
|
|
android:name=".SearchSubredditsResultActivity"
|
|
|
|
android:label="@string/search_subreddits_activity_label"
|
|
|
|
android:parentActivityName=".MainActivity"
|
|
|
|
android:theme="@style/AppTheme.NoActionBar" />
|
2019-08-02 07:51:32 +02:00
|
|
|
<activity android:name=".LinkResolverActivity">
|
|
|
|
<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-08-02 07:51:32 +02:00
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2019-07-18 17:59:14 +02:00
|
|
|
<activity
|
|
|
|
android:name=".SearchActivity"
|
|
|
|
android:label="@string/search_activity_label"
|
|
|
|
android:parentActivityName=".MainActivity"
|
|
|
|
android:theme="@style/AppTheme.NoActionBar" />
|
2019-07-18 06:00:46 +02:00
|
|
|
<activity
|
|
|
|
android:name=".RulesActivity"
|
|
|
|
android:label="@string/rules_activity_label"
|
2019-08-12 03:26:27 +02:00
|
|
|
android:parentActivityName=".MainActivity"
|
|
|
|
android:theme="@style/AppTheme.NoActionBar" />
|
2019-07-14 15:29:10 +02:00
|
|
|
<activity
|
|
|
|
android:name=".PostVideoActivity"
|
|
|
|
android:label="@string/post_video_activity_label"
|
|
|
|
android:parentActivityName=".MainActivity"
|
2019-08-06 11:35:54 +02:00
|
|
|
android:theme="@style/AppTheme.NoActionBar"
|
|
|
|
android:windowSoftInputMode="adjustResize" />
|
2019-07-12 18:05:38 +02:00
|
|
|
<activity
|
|
|
|
android:name=".PostImageActivity"
|
|
|
|
android:label="@string/post_image_activity_label"
|
|
|
|
android:parentActivityName=".MainActivity"
|
2019-08-06 11:35:54 +02:00
|
|
|
android:theme="@style/AppTheme.NoActionBar"
|
|
|
|
android:windowSoftInputMode="adjustResize" />
|
2019-07-12 03:35:05 +02:00
|
|
|
<activity
|
|
|
|
android:name=".PostLinkActivity"
|
|
|
|
android:label="@string/post_link_activity_label"
|
|
|
|
android:parentActivityName=".MainActivity"
|
2019-08-06 11:35:54 +02:00
|
|
|
android:theme="@style/AppTheme.NoActionBar"
|
|
|
|
android:windowSoftInputMode="adjustResize" />
|
2019-07-11 10:32:27 +02:00
|
|
|
<activity
|
|
|
|
android:name=".SubscribedThingListingActivity"
|
2019-07-10 09:59:47 +02:00
|
|
|
android:label="@string/subscriptions"
|
|
|
|
android:parentActivityName=".MainActivity"
|
|
|
|
android:theme="@style/AppTheme.NoActionBar" />
|
|
|
|
<activity
|
|
|
|
android:name=".SubredditSelectionActivity"
|
|
|
|
android:label="@string/subreddit_selection_activity_label"
|
2019-08-05 04:30:22 +02:00
|
|
|
android:parentActivityName=".MainActivity"
|
|
|
|
android:theme="@style/AppTheme.NoActionBar" />
|
2019-07-10 09:59:47 +02:00
|
|
|
<activity
|
|
|
|
android:name=".PostTextActivity"
|
|
|
|
android:label="@string/post_text_activity_label"
|
2019-07-11 10:32:27 +02:00
|
|
|
android:parentActivityName=".MainActivity"
|
2019-08-05 09:28:53 +02:00
|
|
|
android:theme="@style/AppTheme.NoActionBar"
|
|
|
|
android:windowSoftInputMode="adjustResize" />
|
2019-06-13 06:16:04 +02:00
|
|
|
<activity
|
|
|
|
android:name=".CommentActivity"
|
|
|
|
android:label="@string/comment_activity_label"
|
2019-07-09 11:47:40 +02:00
|
|
|
android:theme="@style/AppTheme.NoActionBar"
|
2019-06-13 06:16:04 +02:00
|
|
|
android:windowSoftInputMode="adjustResize" />
|
|
|
|
<activity
|
2019-07-18 17:59:14 +02:00
|
|
|
android:name=".SearchResultActivity"
|
2019-02-22 06:34:24 +01:00
|
|
|
android:label="@string/search_activity_label"
|
2019-06-13 06:16:04 +02:00
|
|
|
android:parentActivityName=".MainActivity"
|
|
|
|
android:theme="@style/AppTheme.NoActionBar" />
|
2018-07-26 17:04:44 +02:00
|
|
|
<activity
|
|
|
|
android:name=".MainActivity"
|
|
|
|
android:label="@string/app_name"
|
2019-02-22 06:34:24 +01:00
|
|
|
android:theme="@style/AppTheme.NoActionBarWithTransparentStatusBar">
|
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
|
|
|
|
android:name=".LoginActivity"
|
|
|
|
android:label="@string/login_activity_label"
|
|
|
|
android:parentActivityName=".MainActivity" />
|
|
|
|
<activity
|
|
|
|
android:name=".ViewImageActivity"
|
|
|
|
android:parentActivityName=".MainActivity"
|
2019-06-09 08:59:39 +02:00
|
|
|
android:theme="@style/AppTheme.ActionBar.Transparent" />
|
2018-07-26 17:04:44 +02:00
|
|
|
<activity
|
|
|
|
android:name=".ViewVideoActivity"
|
|
|
|
android:parentActivityName=".MainActivity"
|
2019-06-09 08:59:39 +02:00
|
|
|
android:theme="@style/AppTheme.ActionBar.Transparent" />
|
2018-07-26 17:04:44 +02:00
|
|
|
<activity
|
|
|
|
android:name=".ViewPostDetailActivity"
|
2019-06-13 06:16:04 +02:00
|
|
|
android:parentActivityName=".MainActivity"
|
2019-08-02 07:51:32 +02:00
|
|
|
android:theme="@style/AppTheme.NoActionBar" />
|
2018-07-30 17:27:52 +02:00
|
|
|
<activity
|
|
|
|
android:name=".ViewSubredditDetailActivity"
|
2018-09-21 17:35:57 +02:00
|
|
|
android:parentActivityName=".MainActivity"
|
2019-08-02 07:51:32 +02:00
|
|
|
android:theme="@style/AppTheme.NoActionBarWithTranslucentWindow" />
|
2018-09-21 17:35:57 +02:00
|
|
|
<activity
|
|
|
|
android:name=".ViewUserDetailActivity"
|
2019-01-11 04:33:32 +01:00
|
|
|
android:parentActivityName=".MainActivity"
|
2019-08-02 07:51:32 +02:00
|
|
|
android:theme="@style/AppTheme.NoActionBarWithTranslucentWindow" />
|
2019-07-24 12:51:57 +02:00
|
|
|
|
|
|
|
<provider
|
|
|
|
android:name="androidx.core.content.FileProvider"
|
|
|
|
android:authorities="${applicationId}.provider"
|
|
|
|
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>
|
2018-07-26 17:04:44 +02:00
|
|
|
</application>
|
|
|
|
|
|
|
|
</manifest>
|