diff options
author | Docile-Alligator <25734209+Docile-Alligator@users.noreply.github.com> | 2024-05-23 20:12:44 +0000 |
---|---|---|
committer | Docile-Alligator <25734209+Docile-Alligator@users.noreply.github.com> | 2024-05-23 20:12:44 +0000 |
commit | 18aec38d9f4d79afe0748b4bae1dfe11a3ee24ef (patch) | |
tree | 3a94bfce62d7b6b67c8acb87080e001dfce0655c /app/src/main/AndroidManifest.xml | |
parent | 5d050204e7f533958215004c0cdf24ec664c8437 (diff) | |
download | infinity-for-reddit-18aec38d9f4d79afe0748b4bae1dfe11a3ee24ef.tar infinity-for-reddit-18aec38d9f4d79afe0748b4bae1dfe11a3ee24ef.tar.gz infinity-for-reddit-18aec38d9f4d79afe0748b4bae1dfe11a3ee24ef.tar.bz2 infinity-for-reddit-18aec38d9f4d79afe0748b4bae1dfe11a3ee24ef.tar.lz infinity-for-reddit-18aec38d9f4d79afe0748b4bae1dfe11a3ee24ef.tar.xz infinity-for-reddit-18aec38d9f4d79afe0748b4bae1dfe11a3ee24ef.tar.zst infinity-for-reddit-18aec38d9f4d79afe0748b4bae1dfe11a3ee24ef.zip |
Bare bone login using Chrome custom tab.
Diffstat (limited to 'app/src/main/AndroidManifest.xml')
-rw-r--r-- | app/src/main/AndroidManifest.xml | 36 |
1 files changed, 25 insertions, 11 deletions
diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index 17929a31..6c533f12 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -35,22 +35,41 @@ android:usesCleartextTraffic="true" tools:replace="android:label"> <activity + android:name=".activities.LoginChromeCustomTabActivity" + android:parentActivityName=".activities.MainActivity" + android:theme="@style/AppTheme.Slidable" + android:launchMode="singleTop" + android:exported="true"> + + <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="localhost" + android:scheme="infinity" /> + </intent-filter> + + </activity> + <activity android:name=".activities.CommentFilterUsageListingActivity" + android:exported="false" android:parentActivityName=".activities.SettingsActivity" - android:theme="@style/AppTheme.NoActionBar" - android:exported="false" /> + android:theme="@style/AppTheme.NoActionBar" /> <activity android:name=".activities.CustomizeCommentFilterActivity" + android:exported="false" android:label="@string/customize_comment_filter_activity_label" android:parentActivityName=".activities.SettingsActivity" - android:theme="@style/AppTheme.NoActionBar" - android:exported="false" /> + android:theme="@style/AppTheme.NoActionBar" /> <activity android:name=".activities.CommentFilterPreferenceActivity" + android:exported="false" android:label="@string/comment_filter_preference_activity_label" android:parentActivityName=".activities.SettingsActivity" - android:theme="@style/AppTheme.NoActionBar" - android:exported="false" /> + android:theme="@style/AppTheme.NoActionBar" /> <activity android:name=".activities.HistoryActivity" android:exported="false" @@ -123,11 +142,6 @@ android:parentActivityName=".activities.MainActivity" android:theme="@style/AppTheme.NoActionBar" /> <activity - android:name=".activities.GiveAwardActivity" - android:label="@string/give_award_activity_label" - android:parentActivityName=".activities.MainActivity" - android:theme="@style/AppTheme.Slidable" /> - <activity android:name=".activities.SelectUserFlairActivity" android:parentActivityName=".activities.MainActivity" android:theme="@style/AppTheme.Slidable" /> |