-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.xml
More file actions
53 lines (50 loc) · 3.45 KB
/
plugin.xml
File metadata and controls
53 lines (50 loc) · 3.45 KB
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
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android" id="com.sphata.instacamera" version="0.0.1">
<name>InstaCamera</name>
<js-module name="InstaCamera" src="www/InstaCamera.js">
<clobbers target="cordova.plugins.InstaCamera" />
</js-module>
<platform name="android">
<config-file parent="/*" target="res/xml/config.xml">
<feature name="InstaCamera">
<param name="android-package" value="com.sphata.instacamera.InstaCamera" />
</feature>
</config-file>
<config-file parent="/*" target="AndroidManifest.xml" />
<config-file parent="/manifest" target="AndroidManifest.xml">
<uses-permission android:name="android.permission.RECORD_AUDIO" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
</config-file>
<config-file target="AndroidManifest.xml" parent="/manifest/application">
<activity
android:label="Camera activity"
android:hardwareAccelerated="true"
android:theme="@style/Theme.CameraActivity"
android:name="com.sphata.instacamera.TestActivity"/>
</config-file>
<edit-config file="AndroidManifest.xml" target="/manifest/application" mode="merge">
<application android:theme="@style/AppTheme" />
</edit-config>
<source-file src="src/android/InstaCamera.java" target-dir="src/com/sphata/instacamera/" />
<source-file src="src/android/TestActivity.java" target-dir="src/com/sphata/instacamera/" />
<resource-file src="src/android/res/layout/activity_test.xml" target="res/layout/activity_test.xml" />
<resource-file src="src/android/res/drawable/capture.xml" target="res/drawable/capture.xml" />
<resource-file src="src/android/res/drawable/capture_active.xml" target="res/drawable/capture_active.xml" />
<resource-file src="src/android/res/drawable/capture_inactive.xml" target="res/drawable/capture_inactive.xml" />
<resource-file src="src/android/res/drawable/ic_autorenew_white.xml" target="res/drawable/ic_autorenew_white.xml" />
<resource-file src="src/android/res/values/styles.xml" target="res/values/styles.xml" />
<resource-file src="src/android/res/values/colors.xml" target="res/values/colors.xml" />
<resource-file src="src/android/res/drawable/background.xml" target="res/drawable/background.xml" />
<resource-file src="src/android/res/drawable/ic_photo.xml" target="res/drawable/ic_photo.xml" />
<resource-file src="src/android/res/drawable/ic_switch.xml" target="res/drawable/ic_switch.xml" />
<resource-file src="src/android/res/drawable/ic_video.xml" target="res/drawable/ic_video.xml" />
<resource-file src="src/android/res/drawable/ic_record.xml" target="res/drawable/ic_record.xml" />
<resource-file src="src/android/res/drawable/ic_flash_on.xml" target="res/drawable/ic_flash_on.xml" />
<resource-file src="src/android/res/drawable/ic_flash_off.xml" target="res/drawable/ic_flash_off.xml" />
<framework src="com.android.support:appcompat-v7:26.1.0" />
<framework src="com.otaliastudios:cameraview:1.5.0" />
<framework src="com.android.support.constraint:constraint-layout:1.0.2" />
<framework src="com.h6ah4i.android.widget.verticalseekbar:verticalseekbar:0.7.2" />
<framework src="com.android.support:design:26.1.0" />
</platform>
</plugin>