-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathAndroidManifest.xml
89 lines (78 loc) · 4.6 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.nimbus.app.beanstalk" android:versionCode="6" android:versionName="1.1.2">
<uses-permission android:name="android.permission.INTERNET">
</uses-permission>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-sdk android:minSdkVersion="12" />
<application android:name=".LiveSdkSampleApplication" android:icon="@drawable/ic_launcher3" android:label="@string/app_name">
<activity android:name=".Intro" 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>
</activity>
<activity android:name=".Home" android:label="@string/app_name" android:screenOrientation="portrait">
<intent-filter>
<action android:name="com.nimbus.app.beanstalk.HOME" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity android:name=".DropboxLog" android:label="@string/app_name" android:screenOrientation="portrait">
<intent-filter>
<action android:name="com.nimbus.app.beanstalk.DROPBOXLOG" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity android:name=".BoxLog" android:label="@string/app_name" android:screenOrientation="portrait">
</activity>
<activity android:name=".SkydriveLog" android:label="@string/app_name" android:screenOrientation="portrait">
</activity>
<activity android:name=".UploadScreen" android:label="@string/app_name" android:screenOrientation="portrait">
</activity>
<activity android:name=".Authentication" android:label="@string/app_name" android:screenOrientation="portrait">
</activity>
<activity android:name=".SaveScreen" android:label="@string/app_name" android:screenOrientation="portrait">
<intent-filter>
<action android:name="android.intent.action.SEND" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="image/*" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.SEND" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="audio/*" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.SEND" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="application/*" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.SEND" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="video/*" />
</intent-filter>
<meta-data android:name="android.app.searchable" android:resource="@xml/searchable" />
</activity>
<activity android:name=".LiveSdkSampleApplication" android:label="@string/app_name" android:screenOrientation="portrait">
</activity>
<activity android:name="android.app.Application" android:label="@string/app_name" android:screenOrientation="portrait">
</activity>
<activity android:name="com.box.androidlib.activities.BoxAuthentication" android:configChanges="orientation|keyboardHidden" />
<activity android:name="com.dropbox.client2.android.AuthActivity" android:configChanges="orientation|keyboard" android:launchMode="singleTask">
<intent-filter>
<!-- Change this to be db- followed by your app key -->
<data android:scheme="db-dhgel7d3dcsen3d" />
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.BROWSABLE" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity android:name=".SearchResultsActivity">
<intent-filter>
<action android:name="android.intent.action.SEARCH" />
</intent-filter>
</activity>
</application>
</manifest>