21 lines
663 B
XML
21 lines
663 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="com.mogo.module.v2x"
|
|
android:versionCode="1"
|
|
android:versionName="1.2.1.20" >
|
|
|
|
<uses-sdk
|
|
android:minSdkVersion="19"
|
|
android:targetSdkVersion="22" />
|
|
|
|
<application>
|
|
<receiver android:name="com.mogo.module.v2x.receiver.SceneBroadcastReceiver" >
|
|
<intent-filter>
|
|
<action android:name="com.v2x.scene_handler_broadcast" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
</intent-filter>
|
|
</receiver>
|
|
</application>
|
|
|
|
</manifest> |