diff options
Diffstat (limited to 'app/src/main/AndroidManifest.xml')
-rw-r--r-- | app/src/main/AndroidManifest.xml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index edad7ed5..be0be4bb 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -391,6 +391,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 +422,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 |