Skip to content

Commit

Permalink
First
Browse files Browse the repository at this point in the history
  • Loading branch information
mlynch committed Mar 30, 2017
0 parents commit 7f841d8
Show file tree
Hide file tree
Showing 10 changed files with 799 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
node_modules/
.DS_Store
23 changes: 23 additions & 0 deletions LICENSE
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.
5 changes: 5 additions & 0 deletions README.md
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.
33 changes: 33 additions & 0 deletions package.json
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"
}
46 changes: 46 additions & 0 deletions plugin.xml
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>
Loading

0 comments on commit 7f841d8

Please sign in to comment.