-
Notifications
You must be signed in to change notification settings - Fork 0
/
AndroidManifest.xml
58 lines (49 loc) · 2.3 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="edu.stanford.junction.sample.jxwhiteboard"
android:versionCode="1"
android:versionName="1.0">
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.BLUETOOTH" />
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
<application android:label="@string/app_name" android:icon="@drawable/icon">
<activity android:name="edu.stanford.junction.sample.jxwhiteboard.JXWhiteboardActivity"
android:label="@string/app_name"
android:screenOrientation="portrait">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<intent-filter>
<action android:name="junction.intent.action.JOIN" />
<category android:name="junction.intent.category.BOOTSTRAP" />
</intent-filter>
</activity>
<service android:name="edu.stanford.junction.sample.jxwhiteboard.LiaisonService">
</service>
<activity android:name="edu.stanford.junction.sample.jxwhiteboard.ColorPickerActivity"
android:label="@string/color_picker"
android:screenOrientation="portrait">
<intent-filter>
<action android:name="edu.stanford.junction.sample.jxwhiteboard.action.PICK_COLOR" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity android:name="edu.stanford.junction.sample.jxwhiteboard.LineWidthPickerActivity"
android:label="@string/linewidth_picker"
android:screenOrientation="portrait">
<intent-filter>
<action android:name="edu.stanford.junction.sample.jxwhiteboard.action.PICK_LINE_WIDTH" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity android:name="edu.stanford.junction.sample.jxwhiteboard.FindWhiteboardsActivity"
android:label="@string/findwhiteboards"
android:screenOrientation="portrait">
<intent-filter>
<action android:name="edu.stanford.junction.sample.jxwhiteboard.action.FIND_WHITEBOARDS" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
</application>
</manifest>