This repository has been archived by the owner on Aug 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathplugin.xml
68 lines (53 loc) · 2.83 KB
/
plugin.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
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://www.phonegap.com/ns/plugins/1.0" id="io.strider.camera" version="0.1.0">
<name>StriderCamera</name>
<description>Strider - Custom Camera for Cordova Phonegap 3.0.1</description>
<author>Havop - Bruno A. Duarte - November 12, 2013</author>
<license>Apache 2.0 License</license>
<keywords>phonegap,cordova,camera</keywords>
<js-module src="www/Camera.js" name="camera">
<clobbers target="strider.camera" />
</js-module>
<js-module src="www/CameraConstants.js" name="Camera">
<clobbers target="Camera" />
</js-module>
<js-module src="www/CameraPopoverOptions.js" name="CameraPopoverOptions">
<clobbers target="CameraPopoverOptions" />
</js-module>
<js-module src="www/CameraPopoverHandle.js" name="CameraPopoverHandle">
<clobbers target="CameraPopoverHandle" />
</js-module>
<!-- android -->
<platform name="android">
<config-file target="AndroidManifest.xml" parent="/manifest/application">
<activity android:label="@string/app_name" android:name="io.strider.camera.CameraActivity" android:screenOrientation="landscape" android:theme="@android:style/Theme.NoTitleBar.Fullscreen" >
</activity>
</config-file>
<config-file target="AndroidManifest.xml" parent="/manifest">
<uses-permission android:name="android.permission.CAMERA" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-feature android:name="android.hardware.camera" />
<uses-feature android:name="android.hardware.camera.autofocus" />
</config-file>
<config-file target="res/xml/config.xml" parent="/widget">
<feature name="StriderCamera">
<param name="android-package" value="io.strider.camera.CameraLauncher"/>
</feature>
</config-file>
<config-file target="res/values/strings.xml" parent="/resources">
<string name="lblCapture">Capturar</string>
<string name="lblCancel">Cancelar</string>
<string name="lblSave">Salvar</string>
<string name="lblBack">Voltar</string>
</config-file>
<source-file src="src/android/ExifHelper.java" target-dir="src/io/strider/camera" />
<source-file src="src/android/FileHelper.java" target-dir="src/io/strider/camera" />
<source-file src="src/android/CameraActivity.java" target-dir="src/io/strider/camera" />
<source-file src="src/android/CameraLauncher.java" target-dir="src/io/strider/camera" />
<source-file src="src/android/CameraPreview.java" target-dir="src/io/strider/camera" />
<source-file src="src/android/camera_sv.xml" target-dir="res/layout" />
</platform>
<!-- ios -->
<platform name="ios">
</platform>
</plugin>