2024-05-02 14:49:19 +05:30
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2024-05-16 20:56:34 +05:30
|
|
|
xmlns:tools="http://schemas.android.com/tools">
|
2024-05-02 14:49:19 +05:30
|
|
|
|
|
|
|
|
<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"
|
2024-05-16 20:56:34 +05:30
|
|
|
tools:targetApi="31">
|
2024-06-06 20:50:41 +05:30
|
|
|
<activity
|
2024-06-07 20:35:58 +05:30
|
|
|
android:name=".modules.disclaimer.DisclaimerActivity"
|
|
|
|
|
android:exported="false"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".modules.webview.WebViewActivity"
|
|
|
|
|
android:exported="false"
|
|
|
|
|
android:screenOrientation="portrait" />
|
2024-06-06 20:50:41 +05:30
|
|
|
<activity
|
|
|
|
|
android:name=".home.sidebar.profile.UserProfileActivity"
|
2024-06-07 20:35:58 +05:30
|
|
|
android:exported="false"
|
|
|
|
|
android:screenOrientation="portrait" />
|
2024-06-03 20:39:33 +05:30
|
|
|
<activity
|
2024-06-05 21:08:33 +05:30
|
|
|
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" />
|
2024-06-04 16:19:09 +05:30
|
|
|
<activity
|
2024-06-05 21:08:33 +05:30
|
|
|
android:name=".home.sidebar.aboutwoka.AboutActivity"
|
2024-06-04 16:19:09 +05:30
|
|
|
android:exported="false"
|
|
|
|
|
android:screenOrientation="portrait" />
|
2024-05-31 20:27:01 +05:30
|
|
|
<activity
|
|
|
|
|
android:name=".home.MoreHomeActivity"
|
|
|
|
|
android:exported="false"
|
|
|
|
|
android:screenOrientation="portrait"
|
|
|
|
|
android:theme="@style/TransparentActivity" />
|
2024-05-30 21:19:25 +05:30
|
|
|
<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" />
|
2024-05-16 20:56:34 +05:30
|
|
|
<activity
|
|
|
|
|
android:name=".home.ExploreWokaActivity"
|
|
|
|
|
android:exported="false"
|
2024-05-30 21:19:25 +05:30
|
|
|
android:screenOrientation="portrait"
|
|
|
|
|
android:theme="@style/TransparentActivity" />
|
2024-05-14 13:38:02 +05:30
|
|
|
<activity
|
|
|
|
|
android:name=".home.HomeActivity"
|
2024-05-15 21:04:35 +05:30
|
|
|
android:exported="false"
|
2024-05-16 20:56:34 +05:30
|
|
|
android:screenOrientation="portrait" />
|
2024-05-02 14:49:19 +05:30
|
|
|
<activity
|
|
|
|
|
android:name=".onboard.OnboardActivity"
|
2024-05-14 13:38:02 +05:30
|
|
|
android:exported="false"
|
2024-05-02 14:49:19 +05:30
|
|
|
android:screenOrientation="portrait"
|
2024-05-14 13:38:02 +05:30
|
|
|
android:windowSoftInputMode="adjustPan" />
|
2024-05-02 14:49:19 +05:30
|
|
|
<activity
|
|
|
|
|
android:name=".onboard.WelcomeActivity"
|
2024-05-14 13:38:02 +05:30
|
|
|
android:exported="true"
|
2024-05-02 14:49:19 +05:30
|
|
|
android:screenOrientation="portrait"
|
2024-05-16 20:56:34 +05:30
|
|
|
android:theme="@style/Theme.App.Starting">
|
2024-05-02 14:49:19 +05:30
|
|
|
<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>
|