Skip to content

Instantly share code, notes, and snippets.

@thinkingserious
Created February 1, 2014 00:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thinkingserious/8746293 to your computer and use it in GitHub Desktop.
Save thinkingserious/8746293 to your computer and use it in GitHub Desktop.
App Manifest for the SendGrid Glass GDK Example
<?xml version="1.0" encoding="utf-8"?>
<manifest android:versionCode="2"
android:versionName="1"
xmlns:android="http://schemas.android.com/apk/res/android"
package="com.thinkingserious.sendgrid.glass.gdk.example">
<uses-sdk
android:minSdkVersion="15"
android:targetSdkVersion="15" />
<uses-permission android:name="android.permission.INTERNET"></uses-permission>
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@android:style/Theme.DeviceDefault">
<activity
android:name="com.thinkingserious.sendgrid.glass.gdk.example.MainActivity"
android:label="@string/app_name"
android:icon="@drawable/world_icon">
<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" />
</activity>
</application>
</manifest>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment