Refactor: remove Compose prefix from Activity names

- Rename ComposeActivity to MainActivity
- Rename EditProfileComposeActivity to EditProfileActivity
- Rename NewProfileComposeActivity to NewProfileActivity
- Rename GroupsComposeActivity to GroupsActivity
- Move data models to compose/model package
- Update all references in AndroidManifest.xml and source files
This commit is contained in:
世界
2025-12-30 18:38:51 +08:00
parent 71b936ba3a
commit 778cbc6fb0
18 changed files with 45 additions and 45 deletions

View File

@@ -96,7 +96,7 @@
</activity>
<activity
android:name=".compose.ComposeActivity"
android:name=".compose.MainActivity"
android:exported="false"
android:icon="@mipmap/ic_launcher"
android:launchMode="singleTask"
@@ -108,15 +108,15 @@
</activity>
<activity
android:name="io.nekohasekai.sfa.compose.NewProfileComposeActivity"
android:name="io.nekohasekai.sfa.compose.NewProfileActivity"
android:exported="false"
android:theme="@style/AppTheme" />
<activity
android:name="io.nekohasekai.sfa.compose.EditProfileComposeActivity"
android:name="io.nekohasekai.sfa.compose.EditProfileActivity"
android:exported="false"
android:theme="@style/AppTheme" />
<activity
android:name="io.nekohasekai.sfa.compose.GroupsComposeActivity"
android:name="io.nekohasekai.sfa.compose.GroupsActivity"
android:exported="false"
android:theme="@style/AppTheme" />
<activity