Files
Woka_Native_Android/app/src/main/AndroidManifest.xml
AdityaGaikwad 599f817e73 Exit dialog for home screen
Update button only enabled when their is change in the full name input box in UserProfileActivity.kt

MoreActivity songs list and api integration of songs and playing all songs
one by one.
2024-06-10 21:02:16 +05:30

90 lines
3.6 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=".shop.MyOrdersActivity"
android:exported="false"
android:screenOrientation="portrait" />
<activity
android:name=".modules.disclaimer.DisclaimerActivity"
android:exported="false"
android:screenOrientation="portrait" />
<activity
android:name=".modules.webview.WebViewActivity"
android:exported="false"
android:screenOrientation="portrait" />
<activity
android:name=".home.sidebar.profile.UserProfileActivity"
android:exported="false"
android:screenOrientation="portrait" />
<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>