Merge pull request #507 from ratabb/rbb/edit_profile

feat: add Edit Profile
This commit is contained in:
Docile-Alligator
2021-11-02 22:06:38 +08:00
committed by GitHub
19 changed files with 1837 additions and 4 deletions

View File

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