feat: add Edit Profile

This commit is contained in:
ratabb
2021-10-30 14:19:35 +07:00
parent efd5f61889
commit b1d8ad5c76
19 changed files with 1837 additions and 5 deletions

View File

@@ -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>