forked from MaKleSoft/cordova-plugin-migrate-localstorage
-
Notifications
You must be signed in to change notification settings - Fork 11
/
plugin.xml
26 lines (22 loc) · 1.13 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
<?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-migrate-localstorage"
version="0.0.2">
<name>Migrate WebView Data</name>
<description>Migrate LocalStorage data from UIWebView to WKWebView</description>
<license>Apache 2.0</license>
<keywords>ecosystem:cordova,cordova,cordova-ios,uiwebview,wkwebview,localstorage</keywords>
<repo>https://github.com/maklesoft/cordova-plugin-migrate-localstorage.git</repo>
<issue>https://github.com/maklesoft/cordova-plugin-migrate-localstorage/issues/</issue>
<!-- <dependency id="cordova-plugin-wkwebview-engine" version="^1.1.0" /> -->
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="MigrateLocalStorage">
<param name="ios-package" value="MigrateLocalStorage" onload="true" />
</feature>
</config-file>
<header-file src="src/ios/MigrateLocalStorage.h" />
<source-file src="src/ios/MigrateLocalStorage.m" />
</platform>
</plugin>