Files
MoGoEagleEye/OCH/shuttle/driver/src/main/AndroidManifest.xml
yangyakun 0b17fd5ca3 [6.0.0]
[shuttle]
[变更文件夹]
2023-08-23 15:37:11 +08:00

19 lines
702 B
XML

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.mogo.och.bus">
<application>
<!--这里是为了测试增加的广播-->
<receiver android:name=".receiver.TestBusBroadcastReceiver">
<intent-filter>
<action android:name="com.bus.test_control" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</receiver>
<activity android:name=".ui.BusSwitchLineActivity"
android:theme="@style/SwitchLineDialogStyle"
android:launchMode="singleTask"
android:screenOrientation="landscape" />
</application>
</manifest>