-
Notifications
You must be signed in to change notification settings - Fork 67
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 7f841d8
Showing
10 changed files
with
799 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
node_modules/ | ||
.DS_Store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
Copyright 2016-present Drifty Co. | ||
http://drifty.com/ | ||
|
||
MIT License | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining | ||
a copy of this software and associated documentation files (the | ||
"Software"), to deal in the Software without restriction, including | ||
without limitation the rights to use, copy, modify, merge, publish, | ||
distribute, sublicense, and/or sell copies of the Software, and to | ||
permit persons to whom the Software is furnished to do so, subject to | ||
the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be | ||
included in all copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, | ||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF | ||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND | ||
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE | ||
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION | ||
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION | ||
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
Ionic Native UI Plugin | ||
====== | ||
|
||
This plugin works with Ionic Framework to progressively enhance Ionic apps with Native UI | ||
for performance-sensitive interactions, such as transitions and menus. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
{ | ||
"name": "ionic-plugin-deeplinks", | ||
"version": "1.0.11", | ||
"cordova": { | ||
"id": "ionic-plugin-deeplinks", | ||
"platforms": [ | ||
"android", | ||
"ios" | ||
] | ||
}, | ||
"description": "Ionic Deeplinks Plugin", | ||
"repository": "https://github.com/driftyco/ionic-plugin-deeplinks.git", | ||
"issue": "https://github.com/driftyco/ionic-plugin-deeplinks/issues", | ||
"keywords": [ | ||
"ionic", | ||
"cordova", | ||
"deeplink", | ||
"deeplinks", | ||
"mobile", | ||
"hybrid", | ||
"ecosystem:cordova", | ||
"cordova-android", | ||
"cordova-ios" | ||
], | ||
"dependencies": { | ||
"mkpath": ">=1.0.0", | ||
"xml2js": ">=0.4", | ||
"node-version-compare": ">=1.0.1", | ||
"plist": ">=1.2.0" | ||
}, | ||
"author": "Max Lynch <[email protected]>", | ||
"license": "MIT" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
|
||
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" | ||
id="ionic-plugin-native-ui" | ||
version="1.0.8"> | ||
<name>Ionic Native UI Plugin</name> | ||
<description>Ionic Native UI Plugin</description> | ||
<license>MIT</license> | ||
<keywords>Ionic,native,html5,hybrid</keywords> | ||
<repo>https://github.com/driftyco/ionic-plugin-native-ui.git</repo> | ||
<issue>https://github.com/driftyco/ionic-plugin-native-ui/issues</issue> | ||
|
||
<!-- ios --> | ||
<platform name="ios"> | ||
<js-module src="www/native-ui.js" name="native-ui"> | ||
<runs/> | ||
<clobbers target="IonicNativeUI" /> | ||
</js-module> | ||
<config-file target="config.xml" parent="/*"> | ||
<feature name="IonicNativeUI"> | ||
<param name="ios-package" value="IonicNativeUI" onload="true" /> | ||
</feature> | ||
</config-file> | ||
|
||
<source-file src="src/ios/IonicCommon.swift" /> | ||
</platform> | ||
|
||
<platform name="android"> | ||
<js-module src="www/native-ui.js" name="native-ui"> | ||
<runs/> | ||
<clobbers target="IonicNativeUI" /> | ||
</js-module> | ||
<config-file target="config.xml" parent="/*"> | ||
<feature name="IonicNativeUI"> | ||
<param name="android-package" value="io.ionic.nativeui.IonicNativeUI" onload="true" /> | ||
</feature> | ||
</config-file> | ||
<!--<edit-config file="AndroidManifest.xml" target="/manifest/application/activity" mode="overwrite"> | ||
<activity android:name="IonicActivity"></activity> | ||
</edit-config> --> | ||
<source-file src="src/android/IonicCommon.java" target-dir="src/com/ionicframework/common" /> | ||
<!--<source-file src="src/android/IonicActivity.java" target-dir="src/$PACKAGE_NAME" />--> | ||
</platform> | ||
|
||
<dependency id="cordova-plugin-add-swift-support" version="^1.6.0"/> | ||
</plugin> |
Oops, something went wrong.