I'm trying to run the sample code from the following
https://github.com/googleglass/gdk-waveform-sample
I know the sample is based on older version, but I'm trying to make it work with the current version.
I'm getting
> [2014-06-15 23:16:45 - WaveformActivity] Android Launch! [2014-06-15
> 23:16:45 - WaveformActivity] adb is running normally. [2014-06-15
> 23:16:45 - WaveformActivity] No Launcher activity found! [2014-06-15
> 23:16:45 - WaveformActivity] The launch will only sync the application
> package on the device! [2014-06-15 23:16:45 - WaveformActivity]
> Performing sync
Here's the AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2013 Google Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.google.android.glass.sample.waveform"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="19"
android:targetSdkVersion="19" />
<uses-permission android:name="android.permission.RECORD_AUDIO"/>
<application
android:allowBackup="true"
android:label="@string/app_name" >
<activity
android:name="com.google.android.glass.sample.waveform.WaveformActivity" >
<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/trigger_show_me_a_demo" />
</activity>
</application>
</manifest>
Thanks for the help!