Files
MoGoEagleEye/OCH/bus/driver/src/main/AndroidManifest.xml
yangyakun ed1932f8e6 [6.0.0]
[bus]
[bus结构变更]
2023-09-11 16:04:02 +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>