Completed UserProfileActivity.kt with api integration Completed whole flow of add child from guardian app with all api integration of child registration Deactivate account api integration. Flow changes in user log in
80 lines
3.1 KiB
XML
80 lines
3.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools">
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
<application
|
|
android:name=".WokaApp"
|
|
android:allowBackup="true"
|
|
android:dataExtractionRules="@xml/data_extraction_rules"
|
|
android:fullBackupContent="@xml/backup_rules"
|
|
android:icon="@mipmap/ic_launcher"
|
|
android:label="@string/app_name"
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
|
android:supportsRtl="true"
|
|
android:theme="@style/Theme.Woka"
|
|
tools:targetApi="31">
|
|
<activity
|
|
android:name=".home.sidebar.addchild.AddChildActivity"
|
|
android:exported="false" />
|
|
<activity
|
|
android:name=".home.sidebar.profile.UserProfileActivity"
|
|
android:exported="false" />
|
|
<activity
|
|
android:name=".home.sidebar.support.SupportActivity"
|
|
android:exported="false"
|
|
android:screenOrientation="portrait" />
|
|
<activity
|
|
android:name=".home.sidebar.faqs.FaqActivity"
|
|
android:exported="false"
|
|
android:screenOrientation="portrait" />
|
|
<activity
|
|
android:name=".home.sidebar.aboutwoka.AboutActivity"
|
|
android:exported="false"
|
|
android:screenOrientation="portrait" />
|
|
<activity
|
|
android:name=".home.MoreHomeActivity"
|
|
android:exported="false"
|
|
android:screenOrientation="portrait"
|
|
android:theme="@style/TransparentActivity" />
|
|
<activity
|
|
android:name=".players.LiveStreamPlayerActivity"
|
|
android:configChanges="keyboard|keyboardHidden|orientation|screenSize"
|
|
android:exported="false"
|
|
android:launchMode="singleTask"
|
|
android:screenOrientation="sensorLandscape"
|
|
android:supportsPictureInPicture="true"
|
|
android:theme="@style/FullScreenTheme" />
|
|
<activity
|
|
android:name=".home.ExploreWokaActivity"
|
|
android:exported="false"
|
|
android:screenOrientation="portrait"
|
|
android:theme="@style/TransparentActivity" />
|
|
<activity
|
|
android:name=".home.HomeActivity"
|
|
android:exported="false"
|
|
android:screenOrientation="portrait" />
|
|
<activity
|
|
android:name=".onboard.OnboardActivity"
|
|
android:exported="false"
|
|
android:screenOrientation="portrait"
|
|
android:windowSoftInputMode="adjustPan" />
|
|
<activity
|
|
android:name=".onboard.WelcomeActivity"
|
|
android:exported="true"
|
|
android:screenOrientation="portrait"
|
|
android:theme="@style/Theme.App.Starting">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
|
|
<meta-data
|
|
android:name="preloaded_fonts"
|
|
android:resource="@array/preloaded_fonts" />
|
|
</application>
|
|
|
|
</manifest> |