adding setup workflow

This commit is contained in:
2025-04-15 09:57:51 -04:00
parent e36d0616d5
commit 0c04500fc2
7 changed files with 340 additions and 6 deletions

View File

@@ -65,6 +65,23 @@
android:name="android.support.PARENT_ACTIVITY"
android:value=".view.MainActivity" />
</activity>
<!-- Welcome Activity -->
<activity
android:name=".view.WelcomeActivity"
android:label="Welcome"
android:exported="false"
android:theme="@style/Theme.AppCompat.Light.NoActionBar" />
<!-- Server Setup Activity -->
<activity
android:name=".view.ServerSetupActivity"
android:label="Server Setup"
android:exported="false">
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value=".view.WelcomeActivity" />
</activity>
<!-- File Upload Foreground Service -->
<service