143 lines
6.0 KiB
XML
143 lines
6.0 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" />
|
|
<uses-permission android:name="android.permission.RECORD_AUDIO"/>
|
|
|
|
<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=".karaoke.player.KaraokePlayerActivity"
|
|
android:configChanges="keyboard|keyboardHidden|orientation|screenSize|uiMode"
|
|
android:exported="false"
|
|
android:launchMode="singleTask"
|
|
android:supportsPictureInPicture="true"
|
|
android:screenOrientation="portrait"
|
|
/>
|
|
<activity
|
|
android:name=".karaoke.views.KaraokeActivity"
|
|
android:exported="false"
|
|
android:screenOrientation="portrait"/>
|
|
<activity
|
|
android:name=".wokagames.playerr.GamePlayerActivity"
|
|
android:configChanges="keyboard|keyboardHidden|orientation|screenSize|uiMode"
|
|
android:exported="false"
|
|
android:launchMode="singleTask"
|
|
android:supportsPictureInPicture="true"
|
|
android:theme="@style/FullScreenTheme" />
|
|
<activity
|
|
android:name=".wokagames.views.GamesActivity"
|
|
android:exported="false"
|
|
android:screenOrientation="portrait" />
|
|
<activity
|
|
android:name=".audiobooks.views.AudioBooksActivity"
|
|
android:exported="false"
|
|
android:screenOrientation="portrait" />
|
|
<activity
|
|
android:name=".players.views.PlayerActivity"
|
|
android:configChanges="keyboard|keyboardHidden|orientation|screenSize|uiMode"
|
|
android:exported="false"
|
|
android:launchMode="singleTask"
|
|
android:screenOrientation="sensorLandscape"
|
|
android:supportsPictureInPicture="true"
|
|
android:theme="@style/FullScreenTheme" />
|
|
<activity
|
|
android:name=".webseries.views.SeasonActivity"
|
|
android:exported="false"
|
|
android:screenOrientation="portrait" />
|
|
<activity
|
|
android:name=".webseries.views.WebSeriesActivity"
|
|
android:exported="false"
|
|
android:screenOrientation="portrait" />
|
|
<activity
|
|
android:name=".home.views.FMActivity"
|
|
android:exported="false"
|
|
android:screenOrientation="portrait"
|
|
android:theme="@style/TransparentActivity" />
|
|
<activity
|
|
android:name=".home.notifications.NotificationsActivity"
|
|
android:exported="false"
|
|
android:screenOrientation="portrait" />
|
|
<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.views.MoreHomeActivity"
|
|
android:exported="false"
|
|
android:screenOrientation="portrait"
|
|
android:theme="@style/TransparentActivity" />
|
|
<activity
|
|
android:name=".players.views.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.views.ExploreWokaActivity"
|
|
android:exported="false"
|
|
android:screenOrientation="portrait"
|
|
android:theme="@style/TransparentActivity" />
|
|
<activity
|
|
android:name=".home.views.HomeActivity"
|
|
android:exported="false"
|
|
android:screenOrientation="portrait" />
|
|
<activity
|
|
android:name=".onboard.views.OnboardActivity"
|
|
android:exported="false"
|
|
android:screenOrientation="portrait"
|
|
android:windowSoftInputMode="adjustPan" />
|
|
<activity
|
|
android:name=".onboard.views.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> |