Hey Everybody,
Anybody know to implement in manifest (THROUGHT B4A of course) this code below?
My problem is when I create a voice command in GOOGLE GLASS and I need to put this to work, and I need to put directly in Androidmanifest.xml (in OBJ Folder) and put like READ ONLY to B4A not change anything.
<service android:name=".listentrigger">
android:enabled="true"
android:exported="true">
<intent-filter>
<action android:name="com.google.android.glass.action.VOICE_TRIGGER" />
</intent-filter>
<meta-data
android:name="com.google.android.glass.VoiceTrigger"
android:resource="@xml/voice_trigger_start" />
</service>
<receiver android:name=".listentrigger$listentrigger_BR">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED"/>
</intent-filter>
<intent-filter><action android:name="com.google.android.glass.action.VOICE_TRIGGER" /></intent-filter>
</receiver>
Anybody know to implement in manifest (THROUGHT B4A of course) this code below?
My problem is when I create a voice command in GOOGLE GLASS and I need to put this to work, and I need to put directly in Androidmanifest.xml (in OBJ Folder) and put like READ ONLY to B4A not change anything.
<service android:name=".listentrigger">
android:enabled="true"
android:exported="true">
<intent-filter>
<action android:name="com.google.android.glass.action.VOICE_TRIGGER" />
</intent-filter>
<meta-data
android:name="com.google.android.glass.VoiceTrigger"
android:resource="@xml/voice_trigger_start" />
</service>
<receiver android:name=".listentrigger$listentrigger_BR">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED"/>
</intent-filter>
<intent-filter><action android:name="com.google.android.glass.action.VOICE_TRIGGER" /></intent-filter>
</receiver>