-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAndroidManifest.xml
executable file
·44 lines (33 loc) · 1.19 KB
/
AndroidManifest.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<?xml version="1.0" encoding="utf-8"?>
<!--This app was developed for the
Hacking Glass for Education hackathon
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.mezcode.glass.speller"
android:versionCode="1"
android:versionName="1.0"
>
<uses-sdk
android:minSdkVersion="19"
android:targetSdkVersion="19"
/>
<application
android:allowBackup="true"
android:icon="@drawable/ic_game_50"
android:label="@string/app_name"
>
<activity android:name=".StartGameActivity">
<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_play_a_game"
/>
</activity>
<activity android:name=".LeadBeeActivity" />
<activity android:name=".TutorialActivity" />
<activity android:name=".ChooseLevelActivity" />
<activity android:name=".ChooseTimeActivity" />
</application>
</manifest>