实例介绍
由于最近研究ionic框架,深感这块的Demo寥寥可数,而大家又都藏私,堂堂天朝,何时才有百家争鸣之象,开源精神吾辈当仁不让!
【实例截图】
【核心代码】
ionic-wang
└── ionic-wang
├── bower.json
├── config.xml
├── gulpfile.js
├── hooks
│ ├── after_prepare
│ │ └── 010_add_platform_class.js
│ └── README.md
├── ionic.project
├── npm-debug.log
├── package.json
├── platforms
│ ├── android
│ │ ├── android.iml
│ │ ├── AndroidManifest.xml
│ │ ├── assets
│ │ │ ├── _where-is-www.txt
│ │ │ └── www
│ │ │ ├── cordova.js
│ │ │ ├── cordova_plugins.js
│ │ │ ├── css
│ │ │ │ └── style.css
│ │ │ ├── EmailComposer.js
│ │ │ ├── img
│ │ │ │ ├── baidu.png
│ │ │ │ ├── google.png
│ │ │ │ ├── ionic.png
│ │ │ │ ├── logo180.png
│ │ │ │ ├── noicon.png
│ │ │ │ ├── offline.png
│ │ │ │ ├── online.png
│ │ │ │ ├── so360.png
│ │ │ │ ├── sogou.png
│ │ │ │ └── weibo16.png
│ │ │ ├── index.html
│ │ │ ├── js
│ │ │ │ ├── app.js
│ │ │ │ ├── controllers.js
│ │ │ │ ├── JPushPlugin.js
│ │ │ │ ├── jquery-1.11.3.min.js
│ │ │ │ ├── ng-cordova.min.js
│ │ │ │ └── services.js
│ │ │ ├── lib
│ │ │ │ └── ionic
│ │ │ │ ├── css
│ │ │ │ │ ├── ionic.css
│ │ │ │ │ └── ionic.min.css
│ │ │ │ ├── fonts
│ │ │ │ │ ├── ionicons.eot
│ │ │ │ │ ├── ionicons.svg
│ │ │ │ │ ├── ionicons.ttf
│ │ │ │ │ └── ionicons.woff
│ │ │ │ ├── js
│ │ │ │ │ ├── angular
│ │ │ │ │ │ ├── angular-animate.js
│ │ │ │ │ │ ├── angular-animate.min.js
│ │ │ │ │ │ ├── angular.js
│ │ │ │ │ │ ├── angular.min.js
│ │ │ │ │ │ ├── angular-resource.js
│ │ │ │ │ │ ├── angular-resource.min.js
│ │ │ │ │ │ ├── angular-sanitize.js
│ │ │ │ │ │ └── angular-sanitize.min.js
│ │ │ │ │ ├── angular-ui
│ │ │ │ │ │ ├── angular-ui-router.js
│ │ │ │ │ │ └── angular-ui-router.min.js
│ │ │ │ │ ├── ionic-angular.js
│ │ │ │ │ ├── ionic-angular.min.js
│ │ │ │ │ ├── ionic.bundle.js
│ │ │ │ │ ├── ionic.bundle.min.js
│ │ │ │ │ ├── ionic.js
│ │ │ │ │ └── ionic.min.js
│ │ │ │ ├── scss
│ │ │ │ │ ├── _action-sheet.scss
│ │ │ │ │ ├── _animations.scss
│ │ │ │ │ ├── _backdrop.scss
│ │ │ │ │ ├── _badge.scss
│ │ │ │ │ ├── _bar.scss
│ │ │ │ │ ├── _button-bar.scss
│ │ │ │ │ ├── _button.scss
│ │ │ │ │ ├── _checkbox.scss
│ │ │ │ │ ├── _form.scss
│ │ │ │ │ ├── _grid.scss
│ │ │ │ │ ├── ionicons
│ │ │ │ │ │ ├── _ionicons-font.scss
│ │ │ │ │ │ ├── _ionicons-icons.scss
│ │ │ │ │ │ ├── ionicons.scss
│ │ │ │ │ │ └── _ionicons-variables.scss
│ │ │ │ │ ├── ionic.scss
│ │ │ │ │ ├── _items.scss
│ │ │ │ │ ├── _list.scss
│ │ │ │ │ ├── _loading.scss
│ │ │ │ │ ├── _menu.scss
│ │ │ │ │ ├── _mixins.scss
│ │ │ │ │ ├── _modal.scss
│ │ │ │ │ ├── _platform.scss
│ │ │ │ │ ├── _popover.scss
│ │ │ │ │ ├── _popup.scss
│ │ │ │ │ ├── _progress.scss
│ │ │ │ │ ├── _radio.scss
│ │ │ │ │ ├── _range.scss
│ │ │ │ │ ├── _refresher.scss
│ │ │ │ │ ├── _reset.scss
│ │ │ │ │ ├── _scaffolding.scss
│ │ │ │ │ ├── _select.scss
│ │ │ │ │ ├── _slide-box.scss
│ │ │ │ │ ├── _spinner.scss
│ │ │ │ │ ├── _tabs.scss
│ │ │ │ │ ├── _toggle.scss
│ │ │ │ │ ├── _transitions.scss
│ │ │ │ │ ├── _type.scss
│ │ │ │ │ ├── _util.scss
│ │ │ │ │ └── _variables.scss
│ │ │ │ └── version.json
│ │ │ ├── plugins
│ │ │ │ ├── cn.jpush.phonegap.JPushPlugin
│ │ │ │ │ └── www
│ │ │ │ │ └── JPushPlugin.js
│ │ │ │ ├── com.ionic.keyboard
│ │ │ │ │ └── www
│ │ │ │ │ └── keyboard.js
│ │ │ │ ├── com.jcjee.plugins.emailcomposer
│ │ │ │ │ └── www
│ │ │ │ │ └── EmailComposer.js
│ │ │ │ ├── cordova-plugin-device
│ │ │ │ │ └── www
│ │ │ │ │ └── device.js
│ │ │ │ ├── cordova-plugin-network-information
│ │ │ │ │ └── www
│ │ │ │ │ ├── Connection.js
│ │ │ │ │ └── network.js
│ │ │ │ ├── cordova-plugin-splashscreen
│ │ │ │ │ └── www
│ │ │ │ │ └── splashscreen.js
│ │ │ │ ├── cordova-plugin-whitelist
│ │ │ │ │ └── whitelist.js
│ │ │ │ └── org.apache.cordova.inappbrowser
│ │ │ │ └── www
│ │ │ │ └── inappbrowser.js
│ │ │ └── templates
│ │ │ ├── about.html
│ │ │ ├── register.html
│ │ │ ├── resetpassword.html
│ │ │ ├── tab-account.html
│ │ │ ├── tab-searchengine.html
│ │ │ ├── tabs.html
│ │ │ ├── tab-testspeed.html
│ │ │ └── tab-websites.html
│ │ ├── build.gradle
│ │ ├── cordova
│ │ │ ├── android_sdk_version
│ │ │ ├── build
│ │ │ ├── build.bat
│ │ │ ├── check_reqs
│ │ │ ├── clean
│ │ │ ├── clean.bat
│ │ │ ├── defaults.xml
│ │ │ ├── lib
│ │ │ │ ├── android_sdk_version.js
│ │ │ │ ├── appinfo.js
│ │ │ │ ├── build.js
│ │ │ │ ├── check_reqs.js
│ │ │ │ ├── device.js
│ │ │ │ ├── emulator.js
│ │ │ │ ├── exec.js
│ │ │ │ ├── install-device
│ │ │ │ ├── install-device.bat
│ │ │ │ ├── install-emulator
│ │ │ │ ├── install-emulator.bat
│ │ │ │ ├── list-devices
│ │ │ │ ├── list-devices.bat
│ │ │ │ ├── list-emulator-images
│ │ │ │ ├── list-emulator-images.bat
│ │ │ │ ├── list-started-emulators
│ │ │ │ ├── list-started-emulators.bat
│ │ │ │ ├── log.js
│ │ │ │ ├── plugin-build.gradle
│ │ │ │ ├── run.js
│ │ │ │ ├── spawn.js
│ │ │ │ ├── start-emulator
│ │ │ │ └── start-emulator.bat
│ │ │ ├── log
│ │ │ ├── log.bat
│ │ │ ├── node_modules
│ │ │ │ ├── nopt
│ │ │ │ │ ├── lib
│ │ │ │ │ │ └── nopt.js
│ │ │ │ │ ├── LICENSE
│ │ │ │ │ ├── node_modules
│ │ │ │ │ │ └── abbrev
│ │ │ │ │ │ ├── abbrev.js
│ │ │ │ │ │ ├── LICENSE
│ │ │ │ │ │ └── package.json
│ │ │ │ │ └── package.json
│ │ │ │ ├── q
│ │ │ │ │ ├── benchmark
│ │ │ │ │ │ ├── compare-with-callbacks.js
│ │ │ │ │ │ └── scenarios.js
│ │ │ │ │ ├── CONTRIBUTING.md
│ │ │ │ │ ├── LICENSE
│ │ │ │ │ ├── package.json
│ │ │ │ │ ├── q.js
│ │ │ │ │ ├── queue.js
│ │ │ │ │ └── README.md
│ │ │ │ ├── shelljs
│ │ │ │ │ ├── bin
│ │ │ │ │ │ └── shjs
│ │ │ │ │ ├── global.js
│ │ │ │ │ ├── LICENSE
│ │ │ │ │ ├── make.js
│ │ │ │ │ ├── package.json
│ │ │ │ │ ├── README.md
│ │ │ │ │ ├── scripts
│ │ │ │ │ │ ├── generate-docs.js
│ │ │ │ │ │ └── run-tests.js
│ │ │ │ │ ├── shell.js
│ │ │ │ │ └── src
│ │ │ │ │ ├── cat.js
│ │ │ │ │ ├── cd.js
│ │ │ │ │ ├── chmod.js
│ │ │ │ │ ├── common.js
│ │ │ │ │ ├── cp.js
│ │ │ │ │ ├── dirs.js
│ │ │ │ │ ├── echo.js
│ │ │ │ │ ├── error.js
│ │ │ │ │ ├── exec.js
│ │ │ │ │ ├── find.js
│ │ │ │ │ ├── grep.js
│ │ │ │ │ ├── ls.js
│ │ │ │ │ ├── mkdir.js
│ │ │ │ │ ├── mv.js
│ │ │ │ │ ├── popd.js
│ │ │ │ │ ├── pushd.js
│ │ │ │ │ ├── pwd.js
│ │ │ │ │ ├── rm.js
│ │ │ │ │ ├── sed.js
│ │ │ │ │ ├── tempdir.js
│ │ │ │ │ ├── test.js
│ │ │ │ │ ├── toEnd.js
│ │ │ │ │ ├── to.js
│ │ │ │ │ └── which.js
│ │ │ │ └── which
│ │ │ │ ├── bin
│ │ │ │ │ └── which
│ │ │ │ ├── LICENSE
│ │ │ │ ├── package.json
│ │ │ │ ├── README.md
│ │ │ │ └── which.js
│ │ │ ├── run
│ │ │ ├── run.bat
│ │ │ ├── version
│ │ │ └── version.bat
│ │ ├── CordovaLib
│ │ │ ├── AndroidManifest.xml
│ │ │ ├── build
│ │ │ │ ├── generated
│ │ │ │ │ └── source
│ │ │ │ │ └── buildConfig
│ │ │ │ │ ├── debug
│ │ │ │ │ │ └── org
│ │ │ │ │ │ └── apache
│ │ │ │ │ │ └── cordova
│ │ │ │ │ │ └── BuildConfig.java
│ │ │ │ │ ├── release
│ │ │ │ │ │ └── org
│ │ │ │ │ │ └── apache
│ │ │ │ │ │ └── cordova
│ │ │ │ │ │ └── BuildConfig.java
│ │ │ │ │ └── test
│ │ │ │ │ └── debug
│ │ │ │ │ └── org
│ │ │ │ │ └── apache
│ │ │ │ │ └── cordova
│ │ │ │ │ └── test
│ │ │ │ │ └── BuildConfig.java
│ │ │ │ ├── intermediates
│ │ │ │ │ ├── bundles
│ │ │ │ │ │ ├── debug
│ │ │ │ │ │ │ ├── AndroidManifest.xml
│ │ │ │ │ │ │ └── classes.jar
│ │ │ │ │ │ └── release
│ │ │ │ │ │ ├── AndroidManifest.xml
│ │ │ │ │ │ └── classes.jar
│ │ │ │ │ ├── classes
│ │ │ │ │ │ ├── debug
│ │ │ │ │ │ │ └── org
│ │ │ │ │ │ │ └── apache
│ │ │ │ │ │ │ └── cordova
│ │ │ │ │ │ │ ├── AuthenticationToken.class
│ │ │ │ │ │ │ ├── BuildConfig.class
│ │ │ │ │ │ │ ├── CallbackContext.class
│ │ │ │ │ │ │ ├── Config.class
│ │ │ │ │ │ │ ├── ConfigXmlParser.class
│ │ │ │ │ │ │ ├── CordovaActivity$1.class
│ │ │ │ │ │ │ ├── CordovaActivity$2.class
│ │ │ │ │ │ │ ├── CordovaActivity$3.class
│ │ │ │ │ │ │ ├── CordovaActivity$4$1.class
│ │ │ │ │ │ │ ├── CordovaActivity$4.class
│ │ │ │ │ │ │ ├── CordovaActivity.class
│ │ │ │ │ │ │ ├── CordovaArgs.class
│ │ │ │ │ │ │ ├── CordovaBridge.class
│ │ │ │ │ │ │ ├── CordovaClientCertRequest.class
│ │ │ │ │ │ │ ├── CordovaDialogsHelper$1.class
│ │ │ │ │ │ │ ├── CordovaDialogsHelper$2.class
│ │ │ │ │ │ │ ├── CordovaDialogsHelper$3.class
│ │ │ │ │ │ │ ├── CordovaDialogsHelper$4.class
│ │ │ │ │ │ │ ├── CordovaDialogsHelper$5.class
│ │ │ │ │ │ │ ├── CordovaDialogsHelper$6.class
│ │ │ │ │ │ │ ├── CordovaDialogsHelper$7.class
│ │ │ │ │ │ │ ├── CordovaDialogsHelper$8.class
│ │ │ │ │ │ │ ├── CordovaDialogsHelper$9.class
│ │ │ │ │ │ │ ├── CordovaDialogsHelper$Result.class
│ │ │ │ │ │ │ ├── CordovaDialogsHelper.class
│ │ │ │ │ │ │ ├── CordovaHttpAuthHandler.class
│ │ │ │ │ │ │ ├── CordovaInterface.class
│ │ │ │ │ │ │ ├── CordovaInterfaceImpl$ActivityResultHolder.class
│ │ │ │ │ │ │ ├── CordovaInterfaceImpl.class
│ │ │ │ │ │ │ ├── CordovaPlugin.class
│ │ │ │ │ │ │ ├── CordovaPreferences.class
│ │ │ │ │ │ │ ├── CordovaResourceApi$OpenForReadResult.class
│ │ │ │ │ │ │ ├── CordovaResourceApi.class
│ │ │ │ │ │ │ ├── CordovaWebView.class
│ │ │ │ │ │ │ ├── CordovaWebViewEngine$Client.class
│ │ │ │ │ │ │ ├── CordovaWebViewEngine$EngineView.class
│ │ │ │ │ │ │ ├── CordovaWebViewEngine.class
│ │ │ │ │ │ │ ├── CordovaWebViewImpl$1.class
│ │ │ │ │ │ │ ├── CordovaWebViewImpl$2.class
│ │ │ │ │ │ │ ├── CordovaWebViewImpl$3.class
│ │ │ │ │ │ │ ├── CordovaWebViewImpl$EngineClient$1$1.class
│ │ │ │ │ │ │ ├── CordovaWebViewImpl$EngineClient$1.class
│ │ │ │ │ │ │ ├── CordovaWebViewImpl$EngineClient.class
│ │ │ │ │ │ │ ├── CordovaWebViewImpl.class
│ │ │ │ │ │ │ ├── CoreAndroid$1.class
│ │ │ │ │ │ │ ├── CoreAndroid$2.class
│ │ │ │ │ │ │ ├── CoreAndroid$3.class
│ │ │ │ │ │ │ ├── CoreAndroid$4.class
│ │ │ │ │ │ │ ├── CoreAndroid$5.class
│ │ │ │ │ │ │ ├── CoreAndroid.class
│ │ │ │ │ │ │ ├── engine
│ │ │ │ │ │ │ │ ├── SystemCookieManager.class
│ │ │ │ │ │ │ │ ├── SystemExposedJsApi.class
│ │ │ │ │ │ │ │ ├── SystemWebChromeClient$1.class
│ │ │ │ │ │ │ │ ├── SystemWebChromeClient$2.class
│ │ │ │ │ │ │ │ ├── SystemWebChromeClient$3.class
│ │ │ │ │ │ │ │ ├── SystemWebChromeClient$4.class
│ │ │ │ │ │ │ │ ├── SystemWebChromeClient$5.class
│ │ │ │ │ │ │ │ ├── SystemWebChromeClient.class
│ │ │ │ │ │ │ │ ├── SystemWebView.class
│ │ │ │ │ │ │ │ ├── SystemWebViewClient.class
│ │ │ │ │ │ │ │ ├── SystemWebViewEngine$1.class
│ │ │ │ │ │ │ │ ├── SystemWebViewEngine$2.class
│ │ │ │ │ │ │ │ └── SystemWebViewEngine.class
│ │ │ │ │ │ │ ├── ExposedJsApi.class
│ │ │ │ │ │ │ ├── ICordovaClientCertRequest.class
│ │ │ │ │ │ │ ├── ICordovaCookieManager.class
│ │ │ │ │ │ │ ├── ICordovaHttpAuthHandler.class
│ │ │ │ │ │ │ ├── LOG.class
│ │ │ │ │ │ │ ├── NativeToJsMessageQueue$BridgeMode.class
│ │ │ │ │ │ │ ├── NativeToJsMessageQueue$JsMessage.class
│ │ │ │ │ │ │ ├── NativeToJsMessageQueue$LoadUrlBridgeMode$1.class
│ │ │ │ │ │ │ ├── NativeToJsMessageQueue$LoadUrlBridgeMode.class
│ │ │ │ │ │ │ ├── NativeToJsMessageQueue$NoOpBridgeMode.class
│ │ │ │ │ │ │ ├── NativeToJsMessageQueue$OnlineEventsBridgeMode$1.class
│ │ │ │ │ │ │ ├── NativeToJsMessageQueue$OnlineEventsBridgeMode$2.class
│ │ │ │ │ │ │ ├── NativeToJsMessageQueue$OnlineEventsBridgeMode$OnlineEventsBridgeModeDelegate.class
│ │ │ │ │ │ │ ├── NativeToJsMessageQueue$OnlineEventsBridgeMode.class
│ │ │ │ │ │ │ ├── NativeToJsMessageQueue.class
│ │ │ │ │ │ │ ├── PluginEntry.class
│ │ │ │ │ │ │ ├── PluginManager.class
│ │ │ │ │ │ │ ├── PluginResult$Status.class
│ │ │ │ │ │ │ ├── PluginResult.class
│ │ │ │ │ │ │ ├── Whitelist$URLPattern.class
│ │ │ │ │ │ │ └── Whitelist.class
│ │ │ │ │ │ ├── release
│ │ │ │ │ │ │ └── org
│ │ │ │ │ │ │ └── apache
│ │ │ │ │ │ │ └── cordova
│ │ │ │ │ │ │ ├── AuthenticationToken.class
│ │ │ │ │ │ │ ├── BuildConfig.class
│ │ │ │ │ │ │ ├── CallbackContext.class
│ │ │ │ │ │ │ ├── Config.class
│ │ │ │ │ │ │ ├── ConfigXmlParser.class
│ │ │ │ │ │ │ ├── CordovaActivity$1.class
│ │ │ │ │ │ │ ├── CordovaActivity$2.class
│ │ │ │ │ │ │ ├── CordovaActivity$3.class
│ │ │ │ │ │ │ ├── CordovaActivity$4$1.class
│ │ │ │ │ │ │ ├── CordovaActivity$4.class
│ │ │ │ │ │ │ ├── CordovaActivity.class
│ │ │ │ │ │ │ ├── CordovaArgs.class
│ │ │ │ │ │ │ ├── CordovaBridge.class
│ │ │ │ │ │ │ ├── CordovaClientCertRequest.class
│ │ │ │ │ │ │ ├── CordovaDialogsHelper$1.class
│ │ │ │ │ │ │ ├── CordovaDialogsHelper$2.class
│ │ │ │ │ │ │ ├── CordovaDialogsHelper$3.class
│ │ │ │ │ │ │ ├── CordovaDialogsHelper$4.class
│ │ │ │ │ │ │ ├── CordovaDialogsHelper$5.class
│ │ │ │ │ │ │ ├── CordovaDialogsHelper$6.class
│ │ │ │ │ │ │ ├── CordovaDialogsHelper$7.class
│ │ │ │ │ │ │ ├── CordovaDialogsHelper$8.class
│ │ │ │ │ │ │ ├── CordovaDialogsHelper$9.class
│ │ │ │ │ │ │ ├── CordovaDialogsHelper$Result.class
│ │ │ │ │ │ │ ├── CordovaDialogsHelper.class
│ │ │ │ │ │ │ ├── CordovaHttpAuthHandler.class
│ │ │ │ │ │ │ ├── CordovaInterface.class
│ │ │ │ │ │ │ ├── CordovaInterfaceImpl$ActivityResultHolder.class
│ │ │ │ │ │ │ ├── CordovaInterfaceImpl.class
│ │ │ │ │ │ │ ├── CordovaPlugin.class
│ │ │ │ │ │ │ ├── CordovaPreferences.class
│ │ │ │ │ │ │ ├── CordovaResourceApi$OpenForReadResult.class
│ │ │ │ │ │ │ ├── CordovaResourceApi.class
│ │ │ │ │ │ │ ├── CordovaWebView.class
│ │ │ │ │ │ │ ├── CordovaWebViewEngine$Client.class
│ │ │ │ │ │ │ ├── CordovaWebViewEngine$EngineView.class
│ │ │ │ │ │ │ ├── CordovaWebViewEngine.class
│ │ │ │ │ │ │ ├── CordovaWebViewImpl$1.class
│ │ │ │ │ │ │ ├── CordovaWebViewImpl$2.class
│ │ │ │ │ │ │ ├── CordovaWebViewImpl$3.class
│ │ │ │ │ │ │ ├── CordovaWebViewImpl$EngineClient$1$1.class
│ │ │ │ │ │ │ ├── CordovaWebViewImpl$EngineClient$1.class
│ │ │ │ │ │ │ ├── CordovaWebViewImpl$EngineClient.class
│ │ │ │ │ │ │ ├── CordovaWebViewImpl.class
│ │ │ │ │ │ │ ├── CoreAndroid$1.class
│ │ │ │ │ │ │ ├── CoreAndroid$2.class
│ │ │ │ │ │ │ ├── CoreAndroid$3.class
│ │ │ │ │ │ │ ├── CoreAndroid$4.class
│ │ │ │ │ │ │ ├── CoreAndroid$5.class
│ │ │ │ │ │ │ ├── CoreAndroid.class
│ │ │ │ │ │ │ ├── engine
│ │ │ │ │ │ │ │ ├── SystemCookieManager.class
│ │ │ │ │ │ │ │ ├── SystemExposedJsApi.class
│ │ │ │ │ │ │ │ ├── SystemWebChromeClient$1.class
│ │ │ │ │ │ │ │ ├── SystemWebChromeClient$2.class
│ │ │ │ │ │ │ │ ├── SystemWebChromeClient$3.class
│ │ │ │ │ │ │ │ ├── SystemWebChromeClient$4.class
│ │ │ │ │ │ │ │ ├── SystemWebChromeClient$5.class
│ │ │ │ │ │ │ │ ├── SystemWebChromeClient.class
│ │ │ │ │ │ │ │ ├── SystemWebView.class
│ │ │ │ │ │ │ │ ├── SystemWebViewClient.class
│ │ │ │ │ │ │ │ ├── SystemWebViewEngine$1.class
│ │ │ │ │ │ │ │ ├── SystemWebViewEngine$2.class
│ │ │ │ │ │ │ │ └── SystemWebViewEngine.class
│ │ │ │ │ │ │ ├── ExposedJsApi.class
│ │ │ │ │ │ │ ├── ICordovaClientCertRequest.class
│ │ │ │ │ │ │ ├── ICordovaCookieManager.class
│ │ │ │ │ │ │ ├── ICordovaHttpAuthHandler.class
│ │ │ │ │ │ │ ├── LOG.class
│ │ │ │ │ │ │ ├── NativeToJsMessageQueue$BridgeMode.class
│ │ │ │ │ │ │ ├── NativeToJsMessageQueue$JsMessage.class
│ │ │ │ │ │ │ ├── NativeToJsMessageQueue$LoadUrlBridgeMode$1.class
│ │ │ │ │ │ │ ├── NativeToJsMessageQueue$LoadUrlBridgeMode.class
│ │ │ │ │ │ │ ├── NativeToJsMessageQueue$NoOpBridgeMode.class
│ │ │ │ │ │ │ ├── NativeToJsMessageQueue$OnlineEventsBridgeMode$1.class
│ │ │ │ │ │ │ ├── NativeToJsMessageQueue$OnlineEventsBridgeMode$2.class
│ │ │ │ │ │ │ ├── NativeToJsMessageQueue$OnlineEventsBridgeMode$OnlineEventsBridgeModeDelegate.class
│ │ │ │ │ │ │ ├── NativeToJsMessageQueue$OnlineEventsBridgeMode.class
│ │ │ │ │ │ │ ├── NativeToJsMessageQueue.class
│ │ │ │ │ │ │ ├── PluginEntry.class
│ │ │ │ │ │ │ ├── PluginManager.class
│ │ │ │ │ │ │ ├── PluginResult$Status.class
│ │ │ │ │ │ │ ├── PluginResult.class
│ │ │ │ │ │ │ ├── Whitelist$URLPattern.class
│ │ │ │ │ │ │ └── Whitelist.class
│ │ │ │ │ │ └── test
│ │ │ │ │ │ └── debug
│ │ │ │ │ │ └── org
│ │ │ │ │ │ └── apache
│ │ │ │ │ │ └── cordova
│ │ │ │ │ │ └── test
│ │ │ │ │ │ └── BuildConfig.class
│ │ │ │ │ ├── incremental
│ │ │ │ │ │ ├── aidl
│ │ │ │ │ │ │ ├── debug
│ │ │ │ │ │ │ │ └── dependency.store
│ │ │ │ │ │ │ ├── release
│ │ │ │ │ │ │ │ └── dependency.store
│ │ │ │ │ │ │ └── test
│ │ │ │ │ │ │ └── debug
│ │ │ │ │ │ │ └── dependency.store
│ │ │ │ │ │ ├── mergeAssets
│ │ │ │ │ │ │ ├── debug
│ │ │ │ │ │ │ │ └── merger.xml
│ │ │ │ │ │ │ ├── release
│ │ │ │ │ │ │ │ └── merger.xml
│ │ │ │ │ │ │ └── test
│ │ │ │ │ │ │ └── debug
│ │ │ │ │ │ │ └── merger.xml
│ │ │ │ │ │ ├── mergeResources
│ │ │ │ │ │ │ └── test
│ │ │ │ │ │ │ └── debug
│ │ │ │ │ │ │ └── merger.xml
│ │ │ │ │ │ └── packageResources
│ │ │ │ │ │ ├── debug
│ │ │ │ │ │ │ └── merger.xml
│ │ │ │ │ │ └── release
│ │ │ │ │ │ └── merger.xml
│ │ │ │ │ ├── manifests
│ │ │ │ │ │ ├── test
│ │ │ │ │ │ │ └── debug
│ │ │ │ │ │ │ └── AndroidManifest.xml
│ │ │ │ │ │ └── tmp
│ │ │ │ │ │ └── manifestMerger1425522325401578109.xml
│ │ │ │ │ └── res
│ │ │ │ │ └── resources-debug-test.ap_
│ │ │ │ ├── outputs
│ │ │ │ │ └── aar
│ │ │ │ │ ├── CordovaLib-debug.aar
│ │ │ │ │ └── CordovaLib-release.aar
│ │ │ │ └── tmp
│ │ │ │ ├── packageDebugJar
│ │ │ │ │ └── MANIFEST.MF
│ │ │ │ └── packageReleaseJar
│ │ │ │ └── MANIFEST.MF
│ │ │ ├── build.gradle
│ │ │ ├── cordova.gradle
│ │ │ ├── CordovaLib.iml
│ │ │ ├── project.properties
│ │ │ └── src
│ │ │ └── org
│ │ │ └── apache
│ │ │ └── cordova
│ │ │ ├── AuthenticationToken.java
│ │ │ ├── CallbackContext.java
│ │ │ ├── Config.java
│ │ │ ├── ConfigXmlParser.java
│ │ │ ├── CordovaActivity.java
│ │ │ ├── CordovaArgs.java
│ │ │ ├── CordovaBridge.java
│ │ │ ├── CordovaClientCertRequest.java
│ │ │ ├── CordovaDialogsHelper.java
│ │ │ ├── CordovaHttpAuthHandler.java
│ │ │ ├── CordovaInterfaceImpl.java
│ │ │ ├── CordovaInterface.java
│ │ │ ├── CordovaPlugin.java
│ │ │ ├── CordovaPreferences.java
│ │ │ ├── CordovaResourceApi.java
│ │ │ ├── CordovaWebViewEngine.java
│ │ │ ├── CordovaWebViewImpl.java
│ │ │ ├── CordovaWebView.java
│ │ │ ├── CoreAndroid.java
│ │ │ ├── engine
│ │ │ │ ├── SystemCookieManager.java
│ │ │ │ ├── SystemExposedJsApi.java
│ │ │ │ ├── SystemWebChromeClient.java
│ │ │ │ ├── SystemWebViewClient.java
│ │ │ │ ├── SystemWebViewEngine.java
│ │ │ │ └── SystemWebView.java
│ │ │ ├── ExposedJsApi.java
│ │ │ ├── ICordovaClientCertRequest.java
│ │ │ ├── ICordovaCookieManager.java
│ │ │ ├── ICordovaHttpAuthHandler.java
│ │ │ ├── LOG.java
│ │ │ ├── NativeToJsMessageQueue.java
│ │ │ ├── PluginEntry.java
│ │ │ ├── PluginManager.java
│ │ │ ├── PluginResult.java
│ │ │ └── Whitelist.java
│ │ ├── libs
│ │ │ ├── armeabi
│ │ │ │ └── libjpush173.so
│ │ │ ├── armeabi-v7a
│ │ │ │ └── libjpush173.so
│ │ │ └── jpush-sdk-release1.7.3.jar
│ │ ├── manifest-merger-release-report.txt
│ │ ├── platform_www
│ │ │ └── cordova.js
│ │ ├── project.properties
│ │ ├── res
│ │ │ ├── drawable
│ │ │ │ ├── icon.png
│ │ │ │ └── jpush_notification_icon.png
│ │ │ ├── drawable-hdpi
│ │ │ │ ├── ic_action_next_item.png
│ │ │ │ ├── ic_action_previous_item.png
│ │ │ │ ├── ic_action_remove.png
│ │ │ │ └── icon.png
│ │ │ ├── drawable-land-hdpi
│ │ │ │ └── screen.png
│ │ │ ├── drawable-land-ldpi
│ │ │ │ └── screen.png
│ │ │ ├── drawable-land-mdpi
│ │ │ │ └── screen.png
│ │ │ ├── drawable-land-xhdpi
│ │ │ │ └── screen.png
│ │ │ ├── drawable-land-xxhdpi
│ │ │ │ └── screen.png
│ │ │ ├── drawable-land-xxxhdpi
│ │ │ │ └── screen.png
│ │ │ ├── drawable-ldpi
│ │ │ │ └── icon.png
│ │ │ ├── drawable-mdpi
│ │ │ │ ├── ic_action_next_item.png
│ │ │ │ ├── ic_action_previous_item.png
│ │ │ │ ├── ic_action_remove.png
│ │ │ │ └── icon.png
│ │ │ ├── drawable-port-hdpi
│ │ │ │ └── screen.png
│ │ │ ├── drawable-port-ldpi
│ │ │ │ └── screen.png
│ │ │ ├── drawable-port-mdpi
│ │ │ │ └── screen.png
│ │ │ ├── drawable-port-xhdpi
│ │ │ │ └── screen.png
│ │ │ ├── drawable-port-xxhdpi
│ │ │ │ └── screen.png
│ │ │ ├── drawable-port-xxxhdpi
│ │ │ │ └── screen.png
│ │ │ ├── drawable-xhdpi
│ │ │ │ ├── ic_action_next_item.png
│ │ │ │ ├── ic_action_previous_item.png
│ │ │ │ ├── ic_action_remove.png
│ │ │ │ └── icon.png
│ │ │ ├── drawable-xxhdpi
│ │ │ │ ├── ic_action_next_item.png
│ │ │ │ ├── ic_action_previous_item.png
│ │ │ │ ├── ic_action_remove.png
│ │ │ │ └── icon.png
│ │ │ ├── drawable-xxxhdpi
│ │ │ │ └── icon.png
│ │ │ ├── layout
│ │ │ │ └── test_notification_layout.xml
│ │ │ ├── values
│ │ │ │ └── strings.xml
│ │ │ └── xml
│ │ │ └── config.xml
│ │ ├── settings.gradle
│ │ └── src
│ │ ├── cn
│ │ │ └── jpush
│ │ │ └── phonegap
│ │ │ ├── JPushPlugin.java
│ │ │ └── MyReceiver.java
│ │ ├── com
│ │ │ ├── gugujiankong
│ │ │ │ └── app
│ │ │ │ └── MainActivity.java
│ │ │ ├── ionic
│ │ │ │ └── keyboard
│ │ │ │ └── IonicKeyboard.java
│ │ │ └── jcjee
│ │ │ └── plugins
│ │ │ ├── EmailAttachmentProvider.java
│ │ │ └── EmailComposer.java
│ │ └── org
│ │ └── apache
│ │ └── cordova
│ │ ├── device
│ │ │ └── Device.java
│ │ ├── inappbrowser
│ │ │ ├── InAppBrowserDialog.java
│ │ │ ├── InAppBrowser.java
│ │ │ └── InAppChromeClient.java
│ │ ├── networkinformation
│ │ │ └── NetworkManager.java
│ │ ├── splashscreen
│ │ │ └── SplashScreen.java
│ │ └── whitelist
│ │ └── WhitelistPlugin.java
│ ├── ios
│ │ ├── cordova
│ │ │ ├── apple_ios_version
│ │ │ ├── apple_osx_version
│ │ │ ├── apple_xcode_version
│ │ │ ├── build
│ │ │ ├── build-debug.xcconfig
│ │ │ ├── build-release.xcconfig
│ │ │ ├── build.xcconfig
│ │ │ ├── check_reqs
│ │ │ ├── clean
│ │ │ ├── clean.bat
│ │ │ ├── defaults.xml
│ │ │ ├── lib
│ │ │ │ ├── build.js
│ │ │ │ ├── check_reqs.js
│ │ │ │ ├── clean.js
│ │ │ │ ├── copy-www-build-step.sh
│ │ │ │ ├── list-devices
│ │ │ │ ├── list-emulator-images
│ │ │ │ ├── list-started-emulators
│ │ │ │ ├── run.js
│ │ │ │ ├── spawn.js
│ │ │ │ ├── start-emulator
│ │ │ │ └── versions.js
│ │ │ ├── log
│ │ │ ├── node_modules
│ │ │ │ ├── nopt
│ │ │ │ │ ├── lib
│ │ │ │ │ │ └── nopt.js
│ │ │ │ │ ├── LICENSE
│ │ │ │ │ ├── node_modules
│ │ │ │ │ │ └── abbrev
│ │ │ │ │ │ ├── abbrev.js
│ │ │ │ │ │ ├── LICENSE
│ │ │ │ │ │ └── package.json
│ │ │ │ │ └── package.json
│ │ │ │ ├── q
│ │ │ │ │ ├── LICENSE
│ │ │ │ │ ├── package.json
│ │ │ │ │ ├── q.js
│ │ │ │ │ └── queue.js
│ │ │ │ └── shelljs
│ │ │ │ ├── LICENSE
│ │ │ │ ├── package.json
│ │ │ │ └── shell.js
│ │ │ ├── run
│ │ │ ├── run.bat
│ │ │ ├── version
│ │ │ └── version.bat
│ │ ├── CordovaLib
│ │ │ ├── Classes
│ │ │ │ ├── CDVAvailabilityDeprecated.h
│ │ │ │ ├── CDVAvailability.h
│ │ │ │ ├── CDVCommandDelegate.h
│ │ │ │ ├── CDVCommandDelegateImpl.h
│ │ │ │ ├── CDVCommandDelegateImpl.m
│ │ │ │ ├── CDVCommandQueue.h
│ │ │ │ ├── CDVCommandQueue.m
│ │ │ │ ├── CDVConfigParser.h
│ │ │ │ ├── CDVConfigParser.m
│ │ │ │ ├── CDVDebug.h
│ │ │ │ ├── CDV.h
│ │ │ │ ├── CDVHandleOpenURL.h
│ │ │ │ ├── CDVHandleOpenURL.m
│ │ │ │ ├── CDVInvokedUrlCommand.h
│ │ │ │ ├── CDVInvokedUrlCommand.m
│ │ │ │ ├── CDVJSON.h
│ │ │ │ ├── CDVJSON.m
│ │ │ │ ├── CDVJSON_private.h
│ │ │ │ ├── CDVJSON_private.m
│ │ │ │ ├── CDVLocalStorage.h
│ │ │ │ ├── CDVLocalStorage.m
│ │ │ │ ├── CDVPlugin.h
│ │ │ │ ├── CDVPlugin.m
│ │ │ │ ├── CDVPluginResult.h
│ │ │ │ ├── CDVPluginResult.m
│ │ │ │ ├── CDVScreenOrientationDelegate.h
│ │ │ │ ├── CDVShared.h
│ │ │ │ ├── CDVTimer.h
│ │ │ │ ├── CDVTimer.m
│ │ │ │ ├── CDVURLProtocol.h
│ │ │ │ ├── CDVURLProtocol.m
│ │ │ │ ├── CDVUserAgentUtil.h
│ │ │ │ ├── CDVUserAgentUtil.m
│ │ │ │ ├── CDVViewController.h
│ │ │ │ ├── CDVViewController.m
│ │ │ │ ├── CDVWebViewDelegate.h
│ │ │ │ ├── CDVWebViewDelegate.m
│ │ │ │ ├── CDVWhitelist.h
│ │ │ │ ├── CDVWhitelist.m
│ │ │ │ ├── NSArray+Comparisons.h
│ │ │ │ ├── NSArray+Comparisons.m
│ │ │ │ ├── NSData+Base64.h
│ │ │ │ ├── NSData+Base64.m
│ │ │ │ ├── NSDictionary+Extensions.h
│ │ │ │ ├── NSDictionary+Extensions.m
│ │ │ │ ├── NSMutableArray+QueueAdditions.h
│ │ │ │ ├── NSMutableArray+QueueAdditions.m
│ │ │ │ ├── UIDevice+Extensions.h
│ │ │ │ └── UIDevice+Extensions.m
│ │ │ ├── cordova.js
│ │ │ ├── CordovaLib_Prefix.pch
│ │ │ ├── CordovaLib.xcodeproj
│ │ │ │ ├── project.pbxproj
│ │ │ │ └── xcuserdata
│ │ │ │ └── Parry.xcuserdatad
│ │ │ │ └── xcschemes
│ │ │ │ ├── CordovaLib.xcscheme
│ │ │ │ └── xcschememanagement.plist
│ │ │ └── VERSION
│ │ ├── myApp
│ │ │ ├── Classes
│ │ │ │ ├── AppDelegate.h
│ │ │ │ ├── AppDelegate.m
│ │ │ │ ├── MainViewController.h
│ │ │ │ ├── MainViewController.m
│ │ │ │ └── MainViewController.xib
│ │ │ ├── config.xml
│ │ │ ├── Images.xcassets
│ │ │ │ ├── AppIcon.appiconset
│ │ │ │ │ ├── Contents.json
│ │ │ │ │ ├── Icon-24@2x.png
│ │ │ │ │ ├── Icon-27.5@2x.png
│ │ │ │ │ ├── Icon-29@2x.png
│ │ │ │ │ ├── Icon-29@3x.png
│ │ │ │ │ ├── Icon@2x.png
│ │ │ │ │ ├── Icon-40@2x.png
│ │ │ │ │ ├── Icon-40@3x.png
│ │ │ │ │ ├── Icon-40.png
│ │ │ │ │ ├── Icon-44@2x.png
│ │ │ │ │ ├── Icon-60@2x.png
│ │ │ │ │ ├── Icon-60@3x.png
│ │ │ │ │ ├── Icon-72@2x.png
│ │ │ │ │ ├── Icon-72.png
│ │ │ │ │ ├── Icon-76@2x.png
│ │ │ │ │ ├── Icon-76.png
│ │ │ │ │ ├── Icon-86@2x.png
│ │ │ │ │ ├── Icon-98@2x.png
│ │ │ │ │ ├── Icon.png
│ │ │ │ │ ├── Icon-Small-50@2x.png
│ │ │ │ │ ├── Icon-Small-50.png
│ │ │ │ │ ├── Icon-Small.png
│ │ │ │ │ ├── iTunesArtwork@2x.png
│ │ │ │ │ └── iTunesArtwork.png
│ │ │ │ └── LaunchImage.launchimage
│ │ │ │ ├── Contents.json
│ │ │ │ ├── Default@2x~iphone.png
│ │ │ │ ├── Default-568h@2x.png
│ │ │ │ ├── Default-667h.png
│ │ │ │ ├── Default-736h.png
│ │ │ │ ├── Default~iphone.png
│ │ │ │ ├── Default-Landscape@2x~ipad.png
│ │ │ │ ├── Default-Landscape-736h.png
│ │ │ │ ├── Default-Landscape~ipad.png
│ │ │ │ ├── Default-Portrait@2x~ipad.png
│ │ │ │ └── Default-Portrait~ipad.png
│ │ │ ├── main.m
│ │ │ ├── myApp-Info.plist
│ │ │ ├── myApp-Prefix.pch
│ │ │ ├── Plugins
│ │ │ │ ├── cn.jpush.phonegap.JPushPlugin
│ │ │ │ │ ├── APService.h
│ │ │ │ │ ├── JPushPlugin.h
│ │ │ │ │ ├── JPushPlugin.m
│ │ │ │ │ └── libPushSDK-1.8.2.a
│ │ │ │ ├── com.ionic.keyboard
│ │ │ │ │ ├── IonicKeyboard.h
│ │ │ │ │ ├── IonicKeyboard.m
│ │ │ │ │ ├── UIWebViewExtension.h
│ │ │ │ │ └── UIWebViewExtension.m
│ │ │ │ ├── com.jcjee.plugins.emailcomposer
│ │ │ │ │ ├── EmailComposer.h
│ │ │ │ │ ├── EmailComposer.m
│ │ │ │ │ ├── NSData+Base64.h
│ │ │ │ │ └── NSData+Base64.m
│ │ │ │ ├── cordova-plugin-console
│ │ │ │ │ ├── CDVLogger.h
│ │ │ │ │ └── CDVLogger.m
│ │ │ │ ├── cordova-plugin-device
│ │ │ │ │ ├── CDVDevice.h
│ │ │ │ │ └── CDVDevice.m
│ │ │ │ ├── cordova-plugin-network-information
│ │ │ │ │ ├── CDVConnection.h
│ │ │ │ │ ├── CDVConnection.m
│ │ │ │ │ ├── CDVReachability.h
│ │ │ │ │ └── CDVReachability.m
│ │ │ │ ├── cordova-plugin-splashscreen
│ │ │ │ │ ├── CDVSplashScreen.h
│ │ │ │ │ └── CDVSplashScreen.m
│ │ │ │ ├── org.apache.cordova.inappbrowser
│ │ │ │ │ ├── CDVInAppBrowser.h
│ │ │ │ │ └── CDVInAppBrowser.m
│ │ │ │ └── README
│ │ │ └── Resources
│ │ │ ├── icons
│ │ │ │ ├── icon@2x.png
│ │ │ │ ├── icon-40@2x.png
│ │ │ │ ├── icon-40.png
│ │ │ │ ├── icon-50@2x.png
│ │ │ │ ├── icon-50.png
│ │ │ │ ├── icon-60@2x.png
│ │ │ │ ├── icon-60@3x.png
│ │ │ │ ├── icon-60.png
│ │ │ │ ├── icon-72@2x.png
│ │ │ │ ├── icon-72.png
│ │ │ │ ├── icon-76@2x.png
│ │ │ │ ├── icon-76.png
│ │ │ │ ├── icon.png
│ │ │ │ ├── icon-small@2x.png
│ │ │ │ └── icon-small.png
│ │ │ ├── PushConfig.plist
│ │ │ └── splash
│ │ │ ├── Default@2x~iphone.png
│ │ │ ├── Default-568h@2x~iphone.png
│ │ │ ├── Default-667h.png
│ │ │ ├── Default-736h.png
│ │ │ ├── Default~iphone.png
│ │ │ ├── Default-Landscape@2x~ipad.png
│ │ │ ├── Default-Landscape-736h.png
│ │ │ ├── Default-Landscape~ipad.png
│ │ │ ├── Default-Portrait@2x~ipad.png
│ │ │ └── Default-Portrait~ipad.png
│ │ ├── myApp.xcodeproj
│ │ │ ├── project.pbxproj
│ │ │ ├── project.xcworkspace
│ │ │ │ ├── contents.xcworkspacedata
│ │ │ │ ├── xcshareddata
│ │ │ │ │ └── myApp.xccheckout
│ │ │ │ └── xcuserdata
│ │ │ │ └── Parry.xcuserdatad
│ │ │ │ └── UserInterfaceState.xcuserstate
│ │ │ └── xcuserdata
│ │ │ └── Parry.xcuserdatad
│ │ │ └── xcschemes
│ │ │ ├── myApp.xcscheme
│ │ │ └── xcschememanagement.plist
│ │ ├── platform_www
│ │ │ └── cordova.js
│ │ └── www
│ │ ├── cordova.js
│ │ ├── cordova_plugins.js
│ │ ├── css
│ │ │ └── style.css
│ │ ├── EmailComposer.js
│ │ ├── img
│ │ │ ├── baidu.png
│ │ │ ├── google.png
│ │ │ ├── ionic.png
│ │ │ ├── logo180.png
│ │ │ ├── noicon.png
│ │ │ ├── offline.png
│ │ │ ├── online.png
│ │ │ ├── so360.png
│ │ │ ├── sogou.png
│ │ │ └── weibo16.png
│ │ ├── index.html
│ │ ├── js
│ │ │ ├── app.js
│ │ │ ├── controllers.js
│ │ │ ├── JPushPlugin.js
│ │ │ ├── jquery-1.11.3.min.js
│ │ │ ├── ng-cordova.min.js
│ │ │ └── services.js
│ │ ├── lib
│ │ │ └── ionic
│ │ │ ├── css
│ │ │ │ ├── ionic.css
│ │ │ │ └── ionic.min.css
│ │ │ ├── fonts
│ │ │ │ ├── ionicons.eot
│ │ │ │ ├── ionicons.svg
│ │ │ │ ├── ionicons.ttf
│ │ │ │ └── ionicons.woff
│ │ │ ├── js
│ │ │ │ ├── angular
│ │ │ │ │ ├── angular-animate.js
│ │ │ │ │ ├── angular-animate.min.js
│ │ │ │ │ ├── angular.js
│ │ │ │ │ ├── angular.min.js
│ │ │ │ │ ├── angular-resource.js
│ │ │ │ │ ├── angular-resource.min.js
│ │ │ │ │ ├── angular-sanitize.js
│ │ │ │ │ └── angular-sanitize.min.js
│ │ │ │ ├── angular-ui
│ │ │ │ │ ├── angular-ui-router.js
│ │ │ │ │ └── angular-ui-router.min.js
│ │ │ │ ├── ionic-angular.js
│ │ │ │ ├── ionic-angular.min.js
│ │ │ │ ├── ionic.bundle.js
│ │ │ │ ├── ionic.bundle.min.js
│ │ │ │ ├── ionic.js
│ │ │ │ └── ionic.min.js
│ │ │ ├── scss
│ │ │ │ ├── _action-sheet.scss
│ │ │ │ ├── _animations.scss
│ │ │ │ ├── _backdrop.scss
│ │ │ │ ├── _badge.scss
│ │ │ │ ├── _bar.scss
│ │ │ │ ├── _button-bar.scss
│ │ │ │ ├── _button.scss
│ │ │ │ ├── _checkbox.scss
│ │ │ │ ├── _form.scss
│ │ │ │ ├── _grid.scss
│ │ │ │ ├── ionicons
│ │ │ │ │ ├── _ionicons-font.scss
│ │ │ │ │ ├── _ionicons-icons.scss
│ │ │ │ │ ├── ionicons.scss
│ │ │ │ │ └── _ionicons-variables.scss
│ │ │ │ ├── ionic.scss
│ │ │ │ ├── _items.scss
│ │ │ │ ├── _list.scss
│ │ │ │ ├── _loading.scss
│ │ │ │ ├── _menu.scss
│ │ │ │ ├── _mixins.scss
│ │ │ │ ├── _modal.scss
│ │ │ │ ├── _platform.scss
│ │ │ │ ├── _popover.scss
│ │ │ │ ├── _popup.scss
│ │ │ │ ├── _progress.scss
│ │ │ │ ├── _radio.scss
│ │ │ │ ├── _range.scss
│ │ │ │ ├── _refresher.scss
│ │ │ │ ├── _reset.scss
│ │ │ │ ├── _scaffolding.scss
│ │ │ │ ├── _select.scss
│ │ │ │ ├── _slide-box.scss
│ │ │ │ ├── _spinner.scss
│ │ │ │ ├── _tabs.scss
│ │ │ │ ├── _toggle.scss
│ │ │ │ ├── _transitions.scss
│ │ │ │ ├── _type.scss
│ │ │ │ ├── _util.scss
│ │ │ │ └── _variables.scss
│ │ │ └── version.json
│ │ ├── plugins
│ │ │ ├── cn.jpush.phonegap.JPushPlugin
│ │ │ │ └── www
│ │ │ │ └── JPushPlugin.js
│ │ │ ├── com.ionic.keyboard
│ │ │ │ └── www
│ │ │ │ └── keyboard.js
│ │ │ ├── com.jcjee.plugins.emailcomposer
│ │ │ │ └── www
│ │ │ │ └── EmailComposer.js
│ │ │ ├── cordova-plugin-console
│ │ │ │ └── www
│ │ │ │ ├── console-via-logger.js
│ │ │ │ └── logger.js
│ │ │ ├── cordova-plugin-device
│ │ │ │ └── www
│ │ │ │ └── device.js
│ │ │ ├── cordova-plugin-network-information
│ │ │ │ └── www
│ │ │ │ ├── Connection.js
│ │ │ │ └── network.js
│ │ │ ├── cordova-plugin-splashscreen
│ │ │ │ └── www
│ │ │ │ └── splashscreen.js
│ │ │ └── org.apache.cordova.inappbrowser
│ │ │ └── www
│ │ │ └── inappbrowser.js
│ │ └── templates
│ │ ├── about.html
│ │ ├── register.html
│ │ ├── resetpassword.html
│ │ ├── tab-account.html
│ │ ├── tab-searchengine.html
│ │ ├── tabs.html
│ │ ├── tab-testspeed.html
│ │ └── tab-websites.html
│ └── platforms.json
├── plugins
│ ├── android.json
│ ├── cn.jpush.phonegap.JPushPlugin
│ │ ├── document
│ │ │ ├── Android_detail_api.md
│ │ │ ├── Android_handle_install.md
│ │ │ ├── Common_detail_api.md
│ │ │ ├── iOS_detail_api.md
│ │ │ └── iOS_handle_install.md
│ │ ├── example
│ │ │ ├── css
│ │ │ │ ├── index.css
│ │ │ │ ├── jquery.mobile-1.1.1.css
│ │ │ │ ├── mobiscroll.core-2.0.1.css
│ │ │ │ └── mobiscroll.jqm-2.0.1.css
│ │ │ ├── index.html
│ │ │ └── js
│ │ │ ├── jquery.js
│ │ │ └── jquery.mobile-1.1.1.js
│ │ ├── plugin.xml
│ │ ├── README.md
│ │ ├── src
│ │ │ ├── android
│ │ │ │ ├── armeabi
│ │ │ │ │ └── libjpush173.so
│ │ │ │ ├── armeabi-v7a
│ │ │ │ │ └── libjpush173.so
│ │ │ │ ├── jpush_notification_icon.png
│ │ │ │ ├── JPushPlugin.java
│ │ │ │ ├── jpush-sdk-release1.7.3.jar
│ │ │ │ ├── MyReceiver.java
│ │ │ │ └── test_notification_layout.xml
│ │ │ └── ios
│ │ │ ├── lib
│ │ │ │ ├── APService.h
│ │ │ │ └── libPushSDK-1.8.2.a
│ │ │ ├── Plugins
│ │ │ │ ├── JPushPlugin.h
│ │ │ │ └── JPushPlugin.m
│ │ │ └── PushConfig.plist
│ │ └── www
│ │ └── JPushPlugin.js
│ ├── com.ionic.keyboard
│ │ ├── LICENSE
│ │ ├── package.json
│ │ ├── plugin.xml
│ │ ├── README.md
│ │ ├── src
│ │ │ ├── android
│ │ │ │ └── IonicKeyboard.java
│ │ │ ├── blackberry10
│ │ │ │ ├── index.js
│ │ │ │ └── native
│ │ │ │ ├── public
│ │ │ │ │ ├── json
│ │ │ │ │ │ ├── autolink.h
│ │ │ │ │ │ ├── config.h
│ │ │ │ │ │ ├── features.h
│ │ │ │ │ │ ├── forwards.h
│ │ │ │ │ │ ├── json.h
│ │ │ │ │ │ ├── reader.h
│ │ │ │ │ │ ├── value.h
│ │ │ │ │ │ └── writer.h
│ │ │ │ │ ├── json_batchallocator.h
│ │ │ │ │ ├── json_internalarray.inl
│ │ │ │ │ ├── json_internalmap.inl
│ │ │ │ │ ├── json_reader.cpp
│ │ │ │ │ ├── json_value.cpp
│ │ │ │ │ ├── json_valueiterator.inl
│ │ │ │ │ ├── json_writer.cpp
│ │ │ │ │ ├── plugin.cpp
│ │ │ │ │ ├── plugin.h
│ │ │ │ │ ├── tokenizer.cpp
│ │ │ │ │ └── tokenizer.h
│ │ │ │ └── src
│ │ │ │ ├── keyboard_js.cpp
│ │ │ │ ├── keyboard_js.hpp
│ │ │ │ ├── keyboard_ndk.cpp
│ │ │ │ ├── keyboard_ndk.hpp
│ │ │ │ ├── Logger.cpp
│ │ │ │ └── Logger.hpp
│ │ │ └── ios
│ │ │ ├── IonicKeyboard.h
│ │ │ ├── IonicKeyboard.m
│ │ │ ├── UIWebViewExtension.h
│ │ │ └── UIWebViewExtension.m
│ │ └── www
│ │ └── keyboard.js
│ ├── com.jcjee.plugins.emailcomposer
│ │ ├── plugin.xml
│ │ ├── README.md
│ │ ├── src
│ │ │ ├── android
│ │ │ │ ├── EmailAttachmentProvider.java
│ │ │ │ └── EmailComposer.java
│ │ │ └── ios
│ │ │ ├── EmailComposer.h
│ │ │ ├── EmailComposer.m
│ │ │ ├── NSData+Base64.h
│ │ │ └── NSData+Base64.m
│ │ └── www
│ │ └── EmailComposer.js
│ ├── cordova-plugin-console
│ │ ├── CONTRIBUTING.md
│ │ ├── doc
│ │ │ ├── de
│ │ │ │ └── index.md
│ │ │ ├── es
│ │ │ │ └── index.md
│ │ │ ├── fr
│ │ │ │ └── index.md
│ │ │ ├── it
│ │ │ │ └── index.md
│ │ │ ├── ja
│ │ │ │ └── index.md
│ │ │ ├── ko
│ │ │ │ └── index.md
│ │ │ ├── pl
│ │ │ │ └── index.md
│ │ │ ├── ru
│ │ │ │ └── index.md
│ │ │ └── zh
│ │ │ └── index.md
│ │ ├── LICENSE
│ │ ├── NOTICE
│ │ ├── package.json
│ │ ├── plugin.xml
│ │ ├── README.md
│ │ ├── RELEASENOTES.md
│ │ ├── src
│ │ │ ├── ios
│ │ │ │ ├── CDVLogger.h
│ │ │ │ └── CDVLogger.m
│ │ │ ├── ubuntu
│ │ │ │ ├── console.cpp
│ │ │ │ └── console.h
│ │ │ └── wp
│ │ │ └── DebugConsole.cs
│ │ └── www
│ │ ├── console-via-logger.js
│ │ └── logger.js
│ ├── cordova-plugin-device
│ │ ├── CONTRIBUTING.md
│ │ ├── doc
│ │ │ ├── de
│ │ │ │ └── index.md
│ │ │ ├── es
│ │ │ │ └── index.md
│ │ │ ├── fr
│ │ │ │ └── index.md
│ │ │ ├── it
│ │ │ │ └── index.md
│ │ │ ├── ja
│ │ │ │ └── index.md
│ │ │ ├── ko
│ │ │ │ └── index.md
│ │ │ ├── pl
│ │ │ │ └── index.md
│ │ │ ├── ru
│ │ │ │ └── index.md
│ │ │ └── zh
│ │ │ └── index.md
│ │ ├── LICENSE
│ │ ├── NOTICE
│ │ ├── package.json
│ │ ├── plugin.xml
│ │ ├── README.md
│ │ ├── RELEASENOTES.md
│ │ ├── src
│ │ │ ├── android
│ │ │ │ └── Device.java
│ │ │ ├── blackberry10
│ │ │ │ └── index.js
│ │ │ ├── browser
│ │ │ │ └── DeviceProxy.js
│ │ │ ├── firefoxos
│ │ │ │ └── DeviceProxy.js
│ │ │ ├── ios
│ │ │ │ ├── CDVDevice.h
│ │ │ │ └── CDVDevice.m
│ │ │ ├── tizen
│ │ │ │ └── DeviceProxy.js
│ │ │ ├── ubuntu
│ │ │ │ ├── device.cpp
│ │ │ │ ├── device.h
│ │ │ │ └── device.js
│ │ │ ├── windows
│ │ │ │ └── DeviceProxy.js
│ │ │ └── wp
│ │ │ └── Device.cs
│ │ ├── tests
│ │ │ ├── plugin.xml
│ │ │ └── tests.js
│ │ └── www
│ │ └── device.js
│ ├── cordova-plugin-network-information
│ │ ├── CONTRIBUTING.md
│ │ ├── doc
│ │ │ ├── de
│ │ │ │ ├── index.md
│ │ │ │ └── README.md
│ │ │ ├── es
│ │ │ │ ├── index.md
│ │ │ │ └── README.md
│ │ │ ├── fr
│ │ │ │ ├── index.md
│ │ │ │ └── README.md
│ │ │ ├── it
│ │ │ │ ├── index.md
│ │ │ │ └── README.md
│ │ │ ├── ja
│ │ │ │ ├── index.md
│ │ │ │ └── README.md
│ │ │ ├── ko
│ │ │ │ ├── index.md
│ │ │ │ └── README.md
│ │ │ ├── pl
│ │ │ │ ├── index.md
│ │ │ │ └── README.md
│ │ │ ├── ru
│ │ │ │ └── index.md
│ │ │ └── zh
│ │ │ ├── index.md
│ │ │ └── README.md
│ │ ├── LICENSE
│ │ ├── NOTICE
│ │ ├── package.json
│ │ ├── plugin.xml
│ │ ├── README.md
│ │ ├── RELEASENOTES.md
│ │ ├── src
│ │ │ ├── android
│ │ │ │ └── NetworkManager.java
│ │ │ ├── blackberry10
│ │ │ │ └── index.js
│ │ │ ├── firefoxos
│ │ │ │ └── NetworkProxy.js
│ │ │ ├── ios
│ │ │ │ ├── CDVConnection.h
│ │ │ │ ├── CDVConnection.m
│ │ │ │ ├── CDVReachability.h
│ │ │ │ └── CDVReachability.m
│ │ │ ├── tizen
│ │ │ │ └── NetworkProxy.js
│ │ │ ├── ubuntu
│ │ │ │ ├── network_information.cpp
│ │ │ │ └── network_information.h
│ │ │ ├── windows
│ │ │ │ └── NetworkInfoProxy.js
│ │ │ └── wp
│ │ │ └── NetworkStatus.cs
│ │ ├── tests
│ │ │ ├── plugin.xml
│ │ │ └── tests.js
│ │ └── www
│ │ ├── browser
│ │ │ └── network.js
│ │ ├── Connection.js
│ │ └── network.js
│ ├── cordova-plugin-splashscreen
│ │ ├── CONTRIBUTING.md
│ │ ├── doc
│ │ │ ├── de
│ │ │ │ └── index.md
│ │ │ ├── es
│ │ │ │ └── index.md
│ │ │ ├── fr
│ │ │ │ └── index.md
│ │ │ ├── it
│ │ │ │ └── index.md
│ │ │ ├── ja
│ │ │ │ └── index.md
│ │ │ ├── ko
│ │ │ │ └── index.md
│ │ │ ├── pl
│ │ │ │ └── index.md
│ │ │ ├── ru
│ │ │ │ └── index.md
│ │ │ └── zh
│ │ │ └── index.md
│ │ ├── LICENSE
│ │ ├── NOTICE
│ │ ├── package.json
│ │ ├── plugin.xml
│ │ ├── README.md
│ │ ├── RELEASENOTES.md
│ │ ├── src
│ │ │ ├── android
│ │ │ │ └── SplashScreen.java
│ │ │ ├── blackberry10
│ │ │ │ └── index.js
│ │ │ ├── browser
│ │ │ │ └── SplashScreenProxy.js
│ │ │ ├── ios
│ │ │ │ ├── CDVSplashScreen.h
│ │ │ │ └── CDVSplashScreen.m
│ │ │ ├── tizen
│ │ │ │ └── SplashScreenProxy.js
│ │ │ ├── ubuntu
│ │ │ │ ├── splashscreen.cpp
│ │ │ │ └── splashscreen.h
│ │ │ └── wp
│ │ │ └── SplashScreen.cs
│ │ ├── tests
│ │ │ ├── ios
│ │ │ │ ├── CDVSplashScreenTest
│ │ │ │ │ ├── CDVSplashScreenLibTests
│ │ │ │ │ │ ├── ImageNameTestDelegates.h
│ │ │ │ │ │ ├── ImageNameTestDelegates.m
│ │ │ │ │ │ ├── ImageNameTest.m
│ │ │ │ │ │ └── Info.plist
│ │ │ │ │ └── CDVSplashScreenTest.xcodeproj
│ │ │ │ │ ├── project.pbxproj
│ │ │ │ │ ├── project.xcworkspace
│ │ │ │ │ │ ├── contents.xcworkspacedata
│ │ │ │ │ │ └── xcshareddata
│ │ │ │ │ │ └── CDVSplashScreenTest.xccheckout
│ │ │ │ │ └── xcshareddata
│ │ │ │ │ └── xcschemes
│ │ │ │ │ ├── CDVSplashScreenLibTests.xcscheme
│ │ │ │ │ └── CDVSplashScreenLib.xcscheme
│ │ │ │ ├── CDVSplashScreenTest.xcworkspace
│ │ │ │ │ ├── contents.xcworkspacedata
│ │ │ │ │ └── xcshareddata
│ │ │ │ │ ├── CDVSplashScreenTest.xccheckout
│ │ │ │ │ └── xcschemes
│ │ │ │ │ └── CordovaLib.xcscheme
│ │ │ │ ├── package.json
│ │ │ │ └── README.md
│ │ │ ├── plugin.xml
│ │ │ └── tests.js
│ │ └── www
│ │ ├── splashscreen.js
│ │ └── windows
│ │ └── SplashScreenProxy.js
│ ├── cordova-plugin-whitelist
│ │ ├── CONTRIBUTING.md
│ │ ├── LICENSE
│ │ ├── NOTICE
│ │ ├── package.json
│ │ ├── plugin.xml
│ │ ├── README.md
│ │ ├── RELEASENOTES.md
│ │ ├── src
│ │ │ ├── android
│ │ │ │ └── WhitelistPlugin.java
│ │ │ └── ios
│ │ │ ├── CDVNavigationWhitelistPlugin.h
│ │ │ └── CDVNavigationWhitelistPlugin.m
│ │ └── whitelist.js
│ ├── fetch.json
│ ├── ios.json
│ └── org.apache.cordova.inappbrowser
│ ├── CONTRIBUTING.md
│ ├── doc
│ │ ├── de
│ │ │ └── index.md
│ │ ├── es
│ │ │ └── index.md
│ │ ├── fr
│ │ │ └── index.md
│ │ ├── index.md
│ │ ├── it
│ │ │ └── index.md
│ │ ├── ja
│ │ │ └── index.md
│ │ ├── ko
│ │ │ └── index.md
│ │ ├── pl
│ │ │ └── index.md
│ │ ├── ru
│ │ │ └── index.md
│ │ └── zh
│ │ └── index.md
│ ├── LICENSE
│ ├── NOTICE
│ ├── package.json
│ ├── plugin.xml
│ ├── README.md
│ ├── RELEASENOTES.md
│ ├── src
│ │ ├── amazon
│ │ │ ├── InAppBrowser.java
│ │ │ └── InAppChromeClient.java
│ │ ├── android
│ │ │ ├── InAppBrowserDialog.java
│ │ │ ├── InAppBrowser.java
│ │ │ ├── InAppChromeClient.java
│ │ │ └── res
│ │ │ ├── drawable-hdpi
│ │ │ │ ├── ic_action_next_item.png
│ │ │ │ ├── ic_action_previous_item.png
│ │ │ │ └── ic_action_remove.png
│ │ │ ├── drawable-mdpi
│ │ │ │ ├── ic_action_next_item.png
│ │ │ │ ├── ic_action_previous_item.png
│ │ │ │ └── ic_action_remove.png
│ │ │ ├── drawable-xhdpi
│ │ │ │ ├── ic_action_next_item.png
│ │ │ │ ├── ic_action_previous_item.png
│ │ │ │ └── ic_action_remove.png
│ │ │ └── drawable-xxhdpi
│ │ │ ├── ic_action_next_item.png
│ │ │ ├── ic_action_previous_item.png
│ │ │ └── ic_action_remove.png
│ │ ├── blackberry10
│ │ │ └── README.md
│ │ ├── firefoxos
│ │ │ └── InAppBrowserProxy.js
│ │ ├── ios
│ │ │ ├── CDVInAppBrowser.h
│ │ │ └── CDVInAppBrowser.m
│ │ ├── ubuntu
│ │ │ ├── close.png
│ │ │ ├── inappbrowser.cpp
│ │ │ ├── InAppBrowser_escapeScript.js
│ │ │ ├── inappbrowser.h
│ │ │ └── InAppBrowser.qml
│ │ ├── windows
│ │ │ └── InAppBrowserProxy.js
│ │ └── wp
│ │ └── InAppBrowser.cs
│ ├── tests
│ │ ├── plugin.xml
│ │ ├── resources
│ │ │ ├── inject.css
│ │ │ ├── inject.html
│ │ │ ├── inject.js
│ │ │ ├── local.html
│ │ │ ├── local.pdf
│ │ │ └── video.html
│ │ └── tests.js
│ └── www
│ ├── inappbrowser.js
│ └── windows8
│ └── InAppBrowserProxy.js
├── README.md
├── resources
│ ├── android
│ │ ├── icon
│ │ │ ├── drawable-hdpi-icon.png
│ │ │ ├── drawable-ldpi-icon.png
│ │ │ ├── drawable-mdpi-icon.png
│ │ │ ├── drawable-xhdpi-icon.png
│ │ │ ├── drawable-xxhdpi-icon.png
│ │ │ └── drawable-xxxhdpi-icon.png
│ │ └── splash
│ │ ├── drawable-land-hdpi-screen.png
│ │ ├── drawable-land-ldpi-screen.png
│ │ ├── drawable-land-mdpi-screen.png
│ │ ├── drawable-land-xhdpi-screen.png
│ │ ├── drawable-land-xxhdpi-screen.png
│ │ ├── drawable-land-xxxhdpi-screen.png
│ │ ├── drawable-port-hdpi-screen.png
│ │ ├── drawable-port-ldpi-screen.png
│ │ ├── drawable-port-mdpi-screen.png
│ │ ├── drawable-port-xhdpi-screen.png
│ │ ├── drawable-port-xxhdpi-screen.png
│ │ └── drawable-port-xxxhdpi-screen.png
│ ├── icon.png
│ ├── ios
│ │ ├── icon
│ │ │ ├── Icon@2x.png
│ │ │ ├── Icon-40@2x.png
│ │ │ ├── Icon-40@3x.png
│ │ │ ├── Icon-40.png
│ │ │ ├── Icon-60@2x.png
│ │ │ ├── Icon-60@3x.png
│ │ │ ├── Icon-60.png
│ │ │ ├── Icon-72@2x.png
│ │ │ ├── Icon-72.png
│ │ │ ├── Icon-76@2x.png
│ │ │ ├── Icon-76.png
│ │ │ ├── Icon.png
│ │ │ ├── Icon-Small@2x.png
│ │ │ ├── Icon-Small@3x.png
│ │ │ ├── Icon-Small-50@2x.png
│ │ │ ├── Icon-Small-50.png
│ │ │ ├── Icon-Small.png
│ │ │ ├── iTunesArtwork@2x.png
│ │ │ └── iTunesArtwork.png
│ │ └── splash
│ │ ├── Default@2x~iphone.png
│ │ ├── Default-568h@2x.png
│ │ ├── Default-667h.png
│ │ ├── Default-736h.png
│ │ ├── Default~iphone.png
│ │ ├── Default-Landscape@2x~ipad.png
│ │ ├── Default-Landscape-736h.png
│ │ ├── Default-Landscape~ipad.png
│ │ ├── Default-Portrait@2x~ipad.png
│ │ └── Default-Portrait~ipad.png
│ ├── splash.png
│ └── Thumbs.db
├── scss
│ └── ionic.app.scss
└── www
├── css
│ └── style.css
├── img
│ ├── baidu.png
│ ├── google.png
│ ├── ionic.png
│ ├── logo180.png
│ ├── noicon.png
│ ├── offline.png
│ ├── online.png
│ ├── so360.png
│ ├── sogou.png
│ └── weibo16.png
├── index.html
├── js
│ ├── app.js
│ ├── controllers.js
│ ├── JPushPlugin.js
│ ├── jquery-1.11.3.min.js
│ ├── ng-cordova.min.js
│ └── services.js
├── lib
│ └── ionic
│ ├── css
│ │ ├── ionic.css
│ │ └── ionic.min.css
│ ├── fonts
│ │ ├── ionicons.eot
│ │ ├── ionicons.svg
│ │ ├── ionicons.ttf
│ │ └── ionicons.woff
│ ├── js
│ │ ├── angular
│ │ │ ├── angular-animate.js
│ │ │ ├── angular-animate.min.js
│ │ │ ├── angular.js
│ │ │ ├── angular.min.js
│ │ │ ├── angular-resource.js
│ │ │ ├── angular-resource.min.js
│ │ │ ├── angular-sanitize.js
│ │ │ └── angular-sanitize.min.js
│ │ ├── angular-ui
│ │ │ ├── angular-ui-router.js
│ │ │ └── angular-ui-router.min.js
│ │ ├── ionic-angular.js
│ │ ├── ionic-angular.min.js
│ │ ├── ionic.bundle.js
│ │ ├── ionic.bundle.min.js
│ │ ├── ionic.js
│ │ └── ionic.min.js
│ ├── scss
│ │ ├── _action-sheet.scss
│ │ ├── _animations.scss
│ │ ├── _backdrop.scss
│ │ ├── _badge.scss
│ │ ├── _bar.scss
│ │ ├── _button-bar.scss
│ │ ├── _button.scss
│ │ ├── _checkbox.scss
│ │ ├── _form.scss
│ │ ├── _grid.scss
│ │ ├── ionicons
│ │ │ ├── _ionicons-font.scss
│ │ │ ├── _ionicons-icons.scss
│ │ │ ├── ionicons.scss
│ │ │ └── _ionicons-variables.scss
│ │ ├── ionic.scss
│ │ ├── _items.scss
│ │ ├── _list.scss
│ │ ├── _loading.scss
│ │ ├── _menu.scss
│ │ ├── _mixins.scss
│ │ ├── _modal.scss
│ │ ├── _platform.scss
│ │ ├── _popover.scss
│ │ ├── _popup.scss
│ │ ├── _progress.scss
│ │ ├── _radio.scss
│ │ ├── _range.scss
│ │ ├── _refresher.scss
│ │ ├── _reset.scss
│ │ ├── _scaffolding.scss
│ │ ├── _select.scss
│ │ ├── _slide-box.scss
│ │ ├── _spinner.scss
│ │ ├── _tabs.scss
│ │ ├── _toggle.scss
│ │ ├── _transitions.scss
│ │ ├── _type.scss
│ │ ├── _util.scss
│ │ └── _variables.scss
│ └── version.json
└── templates
├── about.html
├── register.html
├── resetpassword.html
├── tab-account.html
├── tab-searchengine.html
├── tabs.html
├── tab-testspeed.html
└── tab-websites.html
421 directories, 1205 files
标签:
网友评论
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
支持(0) 盖楼(回复)