75 lines
4.5 KiB
XML
75 lines
4.5 KiB
XML
<?xml version='1.0' encoding='utf-8'?>
|
|
<plugin id="capture-cordova-plugin" version="1.0.0" xmlns="http://apache.org/cordova/ns/plugins/1.0"
|
|
xmlns:android="http://schemas.android.com/apk/res/android">
|
|
<name>CapturePlugin</name>
|
|
<js-module name="capture" src="www/capture.js">
|
|
<clobbers target="capture"/>
|
|
</js-module>
|
|
<platform name="android">
|
|
<config-file parent="/*" target="res/xml/config.xml">
|
|
<feature name="capture-cordova-plugin">
|
|
<param name="android-package" value="cn.shuto.plugin.capture.CaptureCordovaPlugin"/>
|
|
</feature>
|
|
</config-file>
|
|
<config-file parent="/*" target="AndroidManifest.xml">
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
|
|
</config-file>
|
|
<config-file parent="application" target="AndroidManifest.xml">
|
|
<activity android:clearTaskOnLaunch="true" android:configChanges="orientation|keyboardHidden|screenSize"
|
|
android:exported="false" android:name="com.mabeijianxi.smallvideorecord2.MediaRecorderActivity"
|
|
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
|
|
android:windowSoftInputMode="stateAlwaysHidden"/>
|
|
<provider android:authorities="${applicationId}.cordova.plugin.camera.provider" android:exported="false"
|
|
android:grantUriPermissions="true" android:name="org.apache.cordova.camera.FileProvider">
|
|
<meta-data android:name="android.support.FILE_PROVIDER_PATHS"
|
|
android:resource="@xml/camera_provider_paths"/>
|
|
</provider>
|
|
</config-file>
|
|
<config-file parent="/manifest" target="AndroidManifest.xml">
|
|
<uses-permission android:name="android.permission.CAMERA"/>
|
|
<uses-permission android:name="android.permission.FLASHLIGHT"/>
|
|
<uses-feature android:name="android.hardware.camera" android:required="true"/>
|
|
</config-file>
|
|
<source-file src="src/android/CaptureCordovaPlugin.java" target-dir="src/cn/shuto/plugin/capture"/>
|
|
<framework custom="true" src="src/android/mobile-ffmpeg-x2.gradle" type="gradleReference"/>
|
|
</platform>
|
|
<platform name="ios">
|
|
<config-file parent="/*" target="config.xml">
|
|
<feature name="CapturePlugin">
|
|
<param name="ios-package" value="CapturePlugin"/>
|
|
</feature>
|
|
</config-file>
|
|
<source-file src="src/ios/CapturePlugin.m"/>
|
|
<header-file src="src/ios/SGRecord/SGMotionManager.h"/>
|
|
<source-file src="src/ios/SGRecord/SGMotionManager.m"/>
|
|
<header-file src="src/ios/SGRecord/SGRecordEncoder.h"/>
|
|
<source-file src="src/ios/SGRecord/SGRecordEncoder.m"/>
|
|
<header-file src="src/ios/SGRecord/SGRecordManager.h"/>
|
|
<source-file src="src/ios/SGRecord/SGRecordManager.m"/>
|
|
<header-file src="src/ios/SGRecord/SGRecordProgressView.h"/>
|
|
<source-file src="src/ios/SGRecord/SGRecordProgressView.m"/>
|
|
<header-file src="src/ios/SGRecord/SGRecordSuccessPreview.h"/>
|
|
<source-file src="src/ios/SGRecord/SGRecordSuccessPreview.m"/>
|
|
<header-file src="src/ios/SGRecord/SGRecordViewController.h"/>
|
|
<source-file src="src/ios/SGRecord/SGRecordViewController.m"/>
|
|
<header-file src="src/ios/SGRecord/UIButton+Convenience.h"/>
|
|
<source-file src="src/ios/SGRecord/UIButton+Convenience.m"/>
|
|
<framework src="AVFoundation.framework"/>
|
|
<framework src="AVKit.framework"/>
|
|
<framework src="CoreMotion.framework"/>
|
|
<framework src="MobileCoreServices.framework"/>
|
|
<preference name="CAMERA_USAGE_DESCRIPTION" default="This app requires access to your camera to take pictures" />
|
|
<config-file target="*-Info.plist" parent="NSCameraUsageDescription">
|
|
<string>$CAMERA_USAGE_DESCRIPTION</string>
|
|
</config-file>
|
|
<preference name="MICROPHONE_USAGE_DESCRIPTION" default="This app requires access to your microphone to take pictures" />
|
|
<config-file target="*-Info.plist" parent="NSMicrophoneUsageDescription">
|
|
<string>$MICROPHONE_USAGE_DESCRIPTION</string>
|
|
</config-file>
|
|
<preference name="PHOTO_LIBRARY_ADD_USAGE_DESCRIPTION" default="This app requires access to your photo library to save your pictures" />
|
|
<config-file target="*-Info.plist" parent="NSPhotoLibraryAddUsageDescription">
|
|
<string>$PHOTO_LIBRARY_ADD_USAGE_DESCRIPTION</string>
|
|
</config-file>
|
|
</platform>
|
|
</plugin>
|