20 lines
755 B
XML
20 lines
755 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="com.mogo.och.sweeper">
|
|
|
|
<application>
|
|
<!--这里是为了测试增加的广播-->
|
|
<receiver android:name=".receiver.TestSweeperBroadcastReceiver">
|
|
<intent-filter>
|
|
<action android:name="com.bus.test_control" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
</intent-filter>
|
|
</receiver>
|
|
<activity android:name=".ui.SweeperSwitchLineActivity"
|
|
android:theme="@style/SwitchLineDialogStyle"
|
|
android:launchMode="singleTask"
|
|
android:screenOrientation="landscape" />/>
|
|
</application>
|
|
|
|
</manifest> |