Skip to content

Commit 7f841d8

Browse files
committed
First
0 parents  commit 7f841d8

10 files changed

+799
-0
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
node_modules/
2+
.DS_Store

LICENSE

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
Copyright 2016-present Drifty Co.
2+
http://drifty.com/
3+
4+
MIT License
5+
6+
Permission is hereby granted, free of charge, to any person obtaining
7+
a copy of this software and associated documentation files (the
8+
"Software"), to deal in the Software without restriction, including
9+
without limitation the rights to use, copy, modify, merge, publish,
10+
distribute, sublicense, and/or sell copies of the Software, and to
11+
permit persons to whom the Software is furnished to do so, subject to
12+
the following conditions:
13+
14+
The above copyright notice and this permission notice shall be
15+
included in all copies or substantial portions of the Software.
16+
17+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
18+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
19+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
20+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
21+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
22+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
23+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

README.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
Ionic Native UI Plugin
2+
======
3+
4+
This plugin works with Ionic Framework to progressively enhance Ionic apps with Native UI
5+
for performance-sensitive interactions, such as transitions and menus.

package.json

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
{
2+
"name": "ionic-plugin-deeplinks",
3+
"version": "1.0.11",
4+
"cordova": {
5+
"id": "ionic-plugin-deeplinks",
6+
"platforms": [
7+
"android",
8+
"ios"
9+
]
10+
},
11+
"description": "Ionic Deeplinks Plugin",
12+
"repository": "https://github.com/driftyco/ionic-plugin-deeplinks.git",
13+
"issue": "https://github.com/driftyco/ionic-plugin-deeplinks/issues",
14+
"keywords": [
15+
"ionic",
16+
"cordova",
17+
"deeplink",
18+
"deeplinks",
19+
"mobile",
20+
"hybrid",
21+
"ecosystem:cordova",
22+
"cordova-android",
23+
"cordova-ios"
24+
],
25+
"dependencies": {
26+
"mkpath": ">=1.0.0",
27+
"xml2js": ">=0.4",
28+
"node-version-compare": ">=1.0.1",
29+
"plist": ">=1.2.0"
30+
},
31+
"author": "Max Lynch <[email protected]>",
32+
"license": "MIT"
33+
}

plugin.xml

+46
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
3+
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
4+
id="ionic-plugin-native-ui"
5+
version="1.0.8">
6+
<name>Ionic Native UI Plugin</name>
7+
<description>Ionic Native UI Plugin</description>
8+
<license>MIT</license>
9+
<keywords>Ionic,native,html5,hybrid</keywords>
10+
<repo>https://github.com/driftyco/ionic-plugin-native-ui.git</repo>
11+
<issue>https://github.com/driftyco/ionic-plugin-native-ui/issues</issue>
12+
13+
<!-- ios -->
14+
<platform name="ios">
15+
<js-module src="www/native-ui.js" name="native-ui">
16+
<runs/>
17+
<clobbers target="IonicNativeUI" />
18+
</js-module>
19+
<config-file target="config.xml" parent="/*">
20+
<feature name="IonicNativeUI">
21+
<param name="ios-package" value="IonicNativeUI" onload="true" />
22+
</feature>
23+
</config-file>
24+
25+
<source-file src="src/ios/IonicCommon.swift" />
26+
</platform>
27+
28+
<platform name="android">
29+
<js-module src="www/native-ui.js" name="native-ui">
30+
<runs/>
31+
<clobbers target="IonicNativeUI" />
32+
</js-module>
33+
<config-file target="config.xml" parent="/*">
34+
<feature name="IonicNativeUI">
35+
<param name="android-package" value="io.ionic.nativeui.IonicNativeUI" onload="true" />
36+
</feature>
37+
</config-file>
38+
<!--<edit-config file="AndroidManifest.xml" target="/manifest/application/activity" mode="overwrite">
39+
<activity android:name="IonicActivity"></activity>
40+
</edit-config> -->
41+
<source-file src="src/android/IonicCommon.java" target-dir="src/com/ionicframework/common" />
42+
<!--<source-file src="src/android/IonicActivity.java" target-dir="src/$PACKAGE_NAME" />-->
43+
</platform>
44+
45+
<dependency id="cordova-plugin-add-swift-support" version="^1.6.0"/>
46+
</plugin>

0 commit comments

Comments
 (0)