-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathAndroidManifest.xml
63 lines (47 loc) · 2.37 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
59
60
61
62
63
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.devtcg.rojocam"
android:versionCode="1"
android:versionName="1.0"
android:installLocation="auto">
<uses-sdk android:minSdkVersion="8" android:targetSdkVersion="10" />
<!-- This permission is needed to talk to the local network via WiFi. -->
<uses-permission android:name="android.permission.INTERNET" />
<!-- Necessary to provide the user's Wi-Fi IP address (useful for debugging
during initial set-up) -->
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
<!-- Required by cling (our UPnP library). -->
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.CHANGE_WIFI_MULTICAST_STATE" />
<!-- Required only for debugging at the moment... -->
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.CAMERA" />
<uses-feature android:name="android.hardware.camera" />
<!-- Active during capture. -->
<uses-permission android:name="android.permission.WAKE_LOCK" />
<!-- Required for a hack that allows us to create a dummy SurfaceView from
a Service. This is necessary only because Android requires a
SurfaceView to use the Camera. -->
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" />
<application
android:icon="@drawable/icon"
android:label="@string/app_name">
<!-- Temporary control/debug console. -->
<activity
android:name="ControllerActivity"
android:label="@string/controller_title"
android:launchMode="singleTop">
<intent-filter android:label="@string/app_name">
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name="SettingsActivity"
android:label="@string/settings_title" />
<!-- Persistent service active when the device is being used as a
camcorder node. -->
<service android:name=".CamcorderNodeService"
android:exported="false" />
</application>
</manifest>