mirror of https://github.com/FongMi/TV.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.6 KiB
43 lines
1.6 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="com.fongmi.android.tv">
|
|
|
|
<application>
|
|
|
|
<meta-data
|
|
android:name="design_width_in_dp"
|
|
android:value="411" />
|
|
|
|
<meta-data
|
|
android:name="design_height_in_dp"
|
|
android:value="891" />
|
|
|
|
<activity
|
|
android:name=".ui.activity.MainActivity"
|
|
android:configChanges="screenSize|smallestScreenSize|screenLayout|orientation"
|
|
android:exported="true"
|
|
android:launchMode="singleTask"
|
|
android:screenOrientation="fullUser"
|
|
android:windowSoftInputMode="adjustPan">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.SEND" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
<data android:mimeType="text/plain" />
|
|
</intent-filter>
|
|
</activity>
|
|
|
|
<activity
|
|
android:name=".ui.activity.DetailActivity"
|
|
android:configChanges="screenSize|smallestScreenSize|screenLayout|orientation"
|
|
android:launchMode="singleTask"
|
|
android:resizeableActivity="true"
|
|
android:screenOrientation="fullUser"
|
|
android:supportsPictureInPicture="true"
|
|
android:theme="@style/AppTheme.Detail" />
|
|
|
|
</application>
|
|
</manifest> |