forked from almalence/OpenCamera
-
Notifications
You must be signed in to change notification settings - Fork 0
/
AndroidManifest.xml
executable file
·114 lines (97 loc) · 4.57 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<?xml version="1.0" encoding="utf-8"?>
<!-- +++
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.almalence.opencam_plus"
android:installLocation="auto"
android:versionCode="56"
android:versionName="3.20">
+++ -->
<!-- -+- -->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.almalence.opencam"
android:installLocation="auto"
android:versionCode="65"
android:versionName="3.20">
<!-- -+- -->
<supports-screens
android:smallScreens="true"
android:normalScreens="true"
android:largeScreens="true"
android:xlargeScreens="true"
/>
<application android:icon="@drawable/icon" android:label="@string/app_name" android:hardwareAccelerated="true" android:largeHeap="true">
<!-- android:debuggable="true"> -->
<activity android:name=".MainScreen"
android:label="@string/app_name"
android:theme="@android:style/Theme.Holo.NoActionBar.Fullscreen">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<intent-filter>
<action android:name="android.media.action.IMAGE_CAPTURE" />
<action android:name="android.media.action.STILL_IMAGE_CAMERA_SECURE" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
<intent-filter>
<action android:name="android.media.action.STILL_IMAGE_CAMERA" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity android:name=".Processing"
android:label="Processing"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"/>
<!-- +++
<activity android:name="com.almalence.opencam_plus.Preferences"
android:label="@string/app_name"
android:icon="@drawable/gui_almalence_settings_more_settings"
android:hardwareAccelerated="true"/>
+++ -->
<!-- -+- -->
<activity android:name="com.almalence.opencam.Preferences"
android:label="@string/app_name"
android:icon="@drawable/gui_almalence_settings_more_settings"
android:hardwareAccelerated="true"/>
<!-- -+- -->
<activity android:name="com.almalence.plugins.processing.hdr.ActivityAdjustments"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"/>
<activity android:name=".FolderPicker"
android:label="@string/choose_folder"/>
<receiver android:name=".HWButtonStart" >
<intent-filter android:priority="1000">
<action android:name="android.intent.action.CAMERA_BUTTON" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</receiver>
<!-- Uncomment for Amazon market 1st part
<receiver android:name="com.amazon.inapp.purchasing.ResponseReceiver">
<intent-filter>
<action
android:name="com.amazon.inapp.purchasing.NOTIFY"
android:permission="com.amazon.inapp.purchasing.Permission.NOTIFY"
/>
</intent-filter>
</receiver>
-->
</application>
<uses-permission android:name="android.permission.CAMERA" />
<uses-feature android:name="android.hardware.camera" android:required="false" />
<uses-feature android:name="android.hardware.camera.front" android:required="false"/>
<uses-feature android:name="android.hardware.camera.autofocus" android:required="false"/>
<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.RECORD_AUDIO" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.WRITE_SETTINGS" />
<!-- -+- -->
<uses-permission android:name="com.android.vending.BILLING"/>
<uses-permission android:name="org.onepf.openiab.permission.BILLING"/>
<!-- -+- -->
<!-- Uncomment for Samsung market
<uses-permission android:name="com.sec.android.iap.permission.BILLING" />
-->
<uses-sdk android:minSdkVersion="14"
android:targetSdkVersion="19"/>
</manifest>