diff options
Diffstat (limited to '')
-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 60393587..826dc004 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -394,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" @@ -420,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 |