diff options
Diffstat (limited to 'app/src/main/AndroidManifest.xml')
-rw-r--r-- | app/src/main/AndroidManifest.xml | 18 |
1 files changed, 15 insertions, 3 deletions
diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index edad7ed5..826dc004 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -205,7 +205,8 @@ android:label="@string/account_saved_thing_activity_label" android:parentActivityName=".activities.MainActivity" android:theme="@style/AppTheme.Slidable" /> - <activity android:name=".activities.ShareDataResolverActivity"> + <activity android:name=".activities.ShareDataResolverActivity" + android:exported="false"> <intent-filter> <action android:name="android.intent.action.SEND" /> @@ -263,7 +264,8 @@ android:label="@string/search_subreddits_activity_label" android:parentActivityName=".activities.MainActivity" android:theme="@style/AppTheme.Slidable" /> - <activity android:name=".activities.LinkResolverActivity"> + <activity android:name=".activities.LinkResolverActivity" + android:exported="true"> <intent-filter> <action android:name="android.intent.action.VIEW" /> <category android:name="android.intent.category.DEFAULT" /> @@ -356,7 +358,8 @@ android:name=".activities.MainActivity" android:label="@string/application_name" android:theme="@style/AppTheme.Launcher" - android:windowSoftInputMode="adjustPan"> + android:windowSoftInputMode="adjustPan" + android:exported="true"> <intent-filter> <action android:name="android.intent.action.MAIN" /> @@ -391,6 +394,11 @@ android:parentActivityName=".activities.MainActivity" android:theme="@style/AppTheme.SlidableWithTranslucentWindow" /> + <activity android:name=".activities.EditProfileActivity" + android:parentActivityName=".activities.MainActivity" + android:theme="@style/AppTheme.SlidableWithTranslucentWindow" + android:windowSoftInputMode="adjustPan" /> + <provider android:name="androidx.core.content.FileProvider" android:authorities="ml.docilealligator.infinityforreddit.provider" @@ -417,6 +425,10 @@ <service android:name=".services.MaterialYouService" android:exported="false" /> + <service + android:name=".services.EditProfileService" + android:enabled="true" + android:exported="false" /> </application> </manifest>
\ No newline at end of file |