Skip to content

Commit

Permalink
add ionic flow
Browse files Browse the repository at this point in the history
  • Loading branch information
lowesyang committed Feb 9, 2019
1 parent 340c8d4 commit 23651a2
Show file tree
Hide file tree
Showing 128 changed files with 38,812 additions and 18 deletions.
10 changes: 9 additions & 1 deletion config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -93,5 +93,13 @@
</plugin>
<plugin name="cordova-plugin-themeablebrowser" spec="0.2.17" />
<engine name="ios" spec="4.5.5" />
<engine name="android" spec="~7.1.4" />
<engine name="android" spec="7.1.4" />
<plugin name="cordova-plugin-ionic" spec="5.3.0">
<variable name="APP_ID" value="205551f0" />
<variable name="CHANNEL_NAME" value="Master" />
<variable name="UPDATE_METHOD" value="background" />
<variable name="MAX_STORE" value="3" />
<variable name="UPDATE_API" value="https://api.ionicjs.com" />
<variable name="MIN_BACKGROUND_DURATION" value="30" />
</plugin>
</widget>
3 changes: 2 additions & 1 deletion ionic.config.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,6 @@
"capacitor": {}
},
"type": "angular",
"npmClient": "yarn"
"npmClient": "yarn",
"id": "205551f0"
}
55 changes: 40 additions & 15 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 12 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,10 @@
"cordova-plugin-add-swift-support": "^1.7.2",
"cordova-plugin-compat": "1.2.0",
"cordova-plugin-device": "^2.0.2",
"cordova-plugin-file": "6.0.1",
"cordova-plugin-file-transfer": "1.7.1",
"cordova-plugin-httpd": "0.9.3",
"cordova-plugin-ionic": "5.3.0",
"cordova-plugin-ionic-keyboard": "^2.1.3",
"cordova-plugin-ionic-webview": "^2.3.2",
"cordova-plugin-qrscanner": "2.6.0",
Expand Down Expand Up @@ -112,7 +115,15 @@
"ANDROID_SUPPORT_VERSION": "26+"
},
"cordova-plugin-compat": {},
"cordova-plugin-themeablebrowser": {}
"cordova-plugin-themeablebrowser": {},
"cordova-plugin-ionic": {
"APP_ID": "205551f0",
"CHANNEL_NAME": "Master",
"UPDATE_METHOD": "background",
"MAX_STORE": "3",
"UPDATE_API": "https://api.ionicjs.com",
"MIN_BACKGROUND_DURATION": "30"
}
},
"platforms": [
"ios",
Expand Down
15 changes: 15 additions & 0 deletions plugins/android.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,26 @@
},
"cordova-sqlite-storage": {
"PACKAGE_NAME": "io.ionic.zjubca.wallet"
},
"cordova-plugin-ionic": {
"APP_ID": "205551f0",
"CHANNEL_NAME": "Master",
"UPDATE_API": "https://api.ionicjs.com",
"UPDATE_METHOD": "background",
"MAX_STORE": "3",
"MIN_BACKGROUND_DURATION": "30",
"PACKAGE_NAME": "io.ionic.zjubca.wallet"
}
},
"dependent_plugins": {
"cordova-plugin-add-swift-support": {
"PACKAGE_NAME": "io.ionic.zjubca.wallet"
},
"cordova-plugin-file": {
"PACKAGE_NAME": "io.ionic.zjubca.wallet"
},
"cordova-plugin-file-transfer": {
"PACKAGE_NAME": "io.ionic.zjubca.wallet"
}
}
}
37 changes: 37 additions & 0 deletions plugins/cordova-plugin-file-transfer/CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
<!--
#
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
#
-->

# Contributing to Apache Cordova

Anyone can contribute to Cordova. And we need your contributions.

There are multiple ways to contribute: report bugs, improve the docs, and
contribute code.

For instructions on this, start with the
[contribution overview](http://cordova.apache.org/contribute/).

The details are explained there, but the important items are:
- Sign and submit an Apache ICLA (Contributor License Agreement).
- Have a Jira issue open that corresponds to your contribution.
- Run the tests so your patch doesn't break existing functionality.

We look forward to your contributions!
Loading

0 comments on commit 23651a2

Please sign in to comment.