-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.xml
72 lines (63 loc) · 4.2 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
69
70
71
72
<?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="cordova-plugin-zoomimageview" version="1.2.5">
<name>zoomimageview</name>
<description>An Cordova plugin for iOS and Android that allows to display an image in fullscreen and zoom in and out.</description>
<license>MIT</license>
<keywords>cordova,android,ios,image,photos,zoom</keywords>
<repo>https://github.com/ImpacGroup/cordova-plugin-zoomimageview.git</repo>
<issue>https://github.com/ImpacGroup/cordova-plugin-zoomimageview/issues</issue>
<engines>
<engine name="cordova" version=">=6.0.0"/>
</engines>
<js-module src="www/zoomimageview.js" name="zoomimageview">
<clobbers target="window.plugins.zoomimageview" />
</js-module>
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="Zoomimageview">
<param name="ios-package" value="Zoomimageview"/>
</feature>
</config-file>
<source-file src="src/ios/ImageInfo.swift"/>
<source-file src="src/ios/ImageViewController.swift"/>
<source-file src="src/ios/ImageViewController.xib"/>
<source-file src="src/ios/ImageViewControllerDelegate.swift"/>
<source-file src="src/ios/IMPImageViewFacade.swift"/>
</platform>
<platform name="android">
<config-file target="config.xml" parent="/*">
<feature name="Zoomimageview">
<param name="android-package" value="de.impacgroup.zoomimageview.ZoomImageView" />
</feature>
</config-file>
<config-file target="AndroidManifest.xml" parent="/manifest/application">
<activity android:label="Zoom-Image-Activity" android:name="de.impacgroup.zoomimageview.module.ZoomImageActivity"></activity>
</config-file>
<source-file src="src/android/AnimationDirection.kt" target-dir="src/main/kotlin/de/impacgroup/zoomimageview/module"/>
<source-file src="src/android/AnimationListener.kt" target-dir="src/main/kotlin/de/impacgroup/zoomimageview/module"/>
<source-file src="src/android/ZoomImage.kt" target-dir="src/main/kotlin/de/impacgroup/zoomimageview/module"/>
<source-file src="src/android/ImagePosition.kt" target-dir="src/main/kotlin/de/impacgroup/zoomimageview/module"/>
<source-file src="src/android/ZoomImageActivity.kt" target-dir="src/main/kotlin/de/impacgroup/zoomimageview/module"/>
<source-file src="src/android/ZoomImageFragment.kt" target-dir="src/main/kotlin/de/impacgroup/zoomimageview/module"/>
<source-file src="src/android/ViewState.kt" target-dir="src/main/kotlin/de/impacgroup/zoomimageview/module"/>
<source-file src="src/android/ResourceType.kt" target-dir="src/main/kotlin/de/impacgroup/zoomimageview/module"/>
<source-file src="src/android/ImageRect.kt" target-dir="src/main/kotlin/de/impacgroup/zoomimageview/module"/>
<source-file src="src/android/ZoomImageView.java" target-dir="src/de/impacgroup/zoomimageview"/>
<source-file src="src/android/ImageInfo.kt" target-dir="src/main/kotlin/de/impacgroup/zoomimageview"/>
<source-file src="src/android/activity_zoom_image.xml" target-dir="res/layout"/>
<source-file src="src/android/zoom_image_fragment.xml" target-dir="res/layout"/>
<source-file src="src/android/ic_baseline_close_24.xml" target-dir="res/drawable"/>
<source-file src="src/android/zoom_theme.xml" target-dir="res/values"/>
<framework src="com.github.MikeOrtiz:TouchImageView:3.1.1"/>
<framework src="com.google.code.gson:gson:2.8.7"/>
<framework src="androidx.constraintlayout:constraintlayout:2.1.1"/>
<framework src="androidx.core:core-ktx:1.6.0"/>
<framework src="androidx.fragment:fragment-ktx:1.3.6"/>
<framework src="androidx.transition:transition-ktx:1.4.1"/>
<framework src="androidx.lifecycle:lifecycle-extensions:2.2.0"/>
<framework src="androidx.localbroadcastmanager:localbroadcastmanager:1.0.0"/>
<framework src="src/android/imageView.gradle" custom="true" type="gradleReference"/>
</platform>
</plugin>