AndroidManifest.xml 2.3 KB
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.hhmedic.android.hhdoctorvideodemo">

    <application
        android:name=".application.DoctorApplication"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:requestLegacyExternalStorage="true"
        android:roundIcon="@mipmap/ic_launcher"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">
        <activity android:name=".activity.SettingAct"
            android:screenOrientation="portrait"/>
        <activity
            android:name=".activity.MultiVideoAct"
            android:screenOrientation="portrait" />
        <activity
            android:name=".activity.MainActivity"
            android:screenOrientation="portrait"
            android:theme="@style/PageTheme">
            <intent-filter>
                <action android:name="com.hhmedic.home" />
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.DEFAULT" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity
            android:name=".activity.CallSelectorAct"
            android:launchMode="singleTask"
            android:screenOrientation="portrait">
            <intent-filter>
                <action android:name="com.hhmedic.doctor.robot" />

                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
        </activity>

        <receiver android:name=".receiver.Controller">
            <intent-filter>
                <action android:name="com.hhmedic.doctor.robot.controller" />

                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
        </receiver>
        <receiver android:name=".receiver.DepartReceiver">
            <intent-filter>
                <action android:name="com.hhmedic.doctor.select.depart" />

                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
        </receiver>

        <activity
            android:name=".activity.ViewDetailAct"
            android:screenOrientation="portrait" />
    </application>

</manifest>