12 lines
415 B
XML
12 lines
415 B
XML
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="com.mogo.module.share" >
|
|
<application>
|
|
<service android:name=".VoiceCmdService" />
|
|
<receiver android:name=".ShareVoiceCmdReceiver">
|
|
<intent-filter>
|
|
<action android:name="com.zhidao.speech.awake.notify" />
|
|
</intent-filter>
|
|
</receiver>
|
|
</application>
|
|
</manifest>
|