AndroidManifest.xml
1.17 KB
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="com.wd.module_home"
tools:ignore="MissingLeanbackLauncher">
<uses-feature
android:name="android.software.leanback"
android:required="false" />
<uses-feature
android:name="android.hardware.touchscreen"
android:required="false" />
<application>
<activity
android:name=".AppMainActivity"
android:configChanges="orientation|keyboardHidden|screenSize|smallestScreenSize|screenLayout|uiMode"
android:screenOrientation="portrait"/>
<activity
android:name=".NavigationBarActivity"
android:exported="false"
android:screenOrientation="portrait" />
<activity
android:name=".PaperActivity"
android:exported="false"
android:screenOrientation="portrait"
android:theme="@style/BgTransparentTheme"/>
<activity
android:name=".ImageActivity"
android:screenOrientation="portrait"/>
</application>
</manifest>