XML PlayBook WebWorks配置文件

<?xml version="1.0" encoding="UTF-8"?>
<widget xmlns="http://www.w3.org/ns/widgets" xmlns:rim="http://www.blackberry.com/ns/widgets" 
version="1.0.3" rim:header="RIM-Widget:rim/widget">
  <name>Landmark Finder</name>
  <description>
Find landmarks around you and get more information about the world around you.
</description>
  <author rim:copyright="2010">n/a</author>

  <content src="index.html"/>

  <access subdomains="true" uri="http://geonames.org"/>
  <access subdomains="true" uri="http://wikipedia.org" />
</widget>

XML XML:Blackberry Playbook的Adobe AIR Descriptor文件

<?xml version="1.0" encoding="utf-8" standalone="no"?>
<application xmlns="http://ns.adobe.com/air/application/2.5">

<!-- Adobe AIR Application Descriptor File Template.

	Specifies parameters for identifying, installing, and launching AIR applications.

	xmlns - The Adobe AIR namespace: http://ns.adobe.com/air/application/2.5
			The last segment of the namespace specifies the version 
			of the AIR runtime required for this application to run.
			
	minimumPatchLevel - The minimum patch level of the AIR runtime required to run 
			the application. Optional.
-->

	<!-- A universally unique application identifier. Must be unique across all AIR applications.
	Using a reverse DNS-style name as the id is recommended. (Eg. com.example.ExampleApplication.) Required. -->
	<id>com.chrisaiv.NameOfApp</id>

	<!-- Used as the filename for the application. Required. -->
	<filename>NameOfApp</filename>

	<!-- The name that is displayed in the AIR application installer. 
	May have multiple values for each language. See samples or xsd schema file. Optional. -->
	<name>NameOfApp</name>
	
	<!-- A string value of the format <0-999>.<0-999>.<0-999> that represents application version which can be used to check for application upgrade. 
	Values can also be 1-part or 2-part. It is not necessary to have a 3-part value.
	An updated version of application must have a versionNumber value higher than the previous version. Required for namespace >= 2.5 . -->
	<versionNumber>1.0.0</versionNumber>
		         
	<!-- A string value (such as "v1", "2.5", or "Alpha 1") that represents the version of the application, as it should be shown to users. Optional. -->
	<!-- <versionLabel></versionLabel> -->

	<!-- Description, displayed in the AIR application installer.
	May have multiple values for each language. See samples or xsd schema file. Optional. -->
	<!-- <description></description> -->

	<!-- Copyright information. Optional -->
	<!-- <copyright></copyright> -->

	<!-- Publisher ID. Used if you're updating an application created prior to 1.5.3 -->
	<!-- <publisherID></publisherID> -->

	<!-- Settings for the application's initial window. Required. -->
	<initialWindow>
		<!-- The main SWF or HTML file of the application. Required. -->
		<!-- Note: In Flash Builder, the SWF reference is set automatically. -->
		<content>NameOfApp.swf</content>
		
		<!-- The title of the main window. Optional. -->
		<!-- <title></title> -->

		<!-- The type of system chrome to use (either "standard" or "none"). Optional. Default standard. -->
		<!-- <systemChrome></systemChrome> -->

		<!-- Whether the window is transparent. Only applicable when systemChrome is none. Optional. Default false. -->
		<!-- <transparent></transparent> -->

		<!-- Whether the window is initially visible. Optional. Default false. -->
		<!-- <visible></visible> -->

		<!-- Whether the user can minimize the window. Optional. Default true. -->
		<!-- <minimizable></minimizable> -->

		<!-- Whether the user can maximize the window. Optional. Default true. -->
		<!-- <maximizable></maximizable> -->

		<!-- Whether the user can resize the window. Optional. Default true. -->
		<!-- <resizable></resizable> -->

		<!-- The window's initial width in pixels. Optional. -->
		<!-- <width></width> -->

		<!-- The window's initial height in pixels. Optional. -->
		<!-- <height></height> -->

		<!-- The window's initial x position. Optional. -->
		<!-- <x></x> -->

		<!-- The window's initial y position. Optional. -->
		<!-- <y></y> -->

		<!-- The window's minimum size, specified as a width/height pair in pixels, such as "400 200". Optional. -->
		<!-- <minSize></minSize> -->

		<!-- The window's initial maximum size, specified as a width/height pair in pixels, such as "1600 1200". Optional. -->
		<!-- <maxSize></maxSize> -->
	<autoOrients>false</autoOrients>
    <fullScreen>false</fullScreen>
    <visible>true</visible>
  </initialWindow>

	<!-- We recommend omitting the supportedProfiles element, -->
	<!-- which in turn permits your application to be deployed to all -->
	<!-- devices supported by AIR. If you wish to restrict deployment -->
	<!-- (i.e., to only mobile devices) then add this element and list -->
	<!-- only the profiles which your application does support. -->
	<!-- <supportedProfiles>desktop extendedDesktop mobileDevice extendedMobileDevice</supportedProfiles> -->

	<!-- The subpath of the standard default installation location to use. Optional. -->
	<!-- <installFolder></installFolder> -->

	<!-- The subpath of the Programs menu to use. (Ignored on operating systems without a Programs menu.) Optional. -->
	<!-- <programMenuFolder></programMenuFolder> -->

	<!-- The icon the system uses for the application. For at least one resolution,
	specify the path to a PNG file included in the AIR package. Optional. -->
	<!-- <icon>
		<image16x16></image16x16>
		<image32x32></image32x32>
		<image36x36></image36x36>
		<image48x48></image48x48>
		<image72x72></image72x72>
		<image128x128></image128x128>
	</icon> -->
	<icon>
		<image72x72>icons/72x72.png</image72x72>
		<image16x16>icons/16x16.png</image16x16>
		<image32x32>icons/32x32.png</image32x32>
		<image36x36>icons/36x36.png</image36x36>
		<image48x48>icons/48x48.png</image48x48>
		<image128x128>icons/128x128.png</image128x128>
	</icon>

	<!-- Whether the application handles the update when a user double-clicks an update version
	of the AIR file (true), or the default AIR application installer handles the update (false).
	Optional. Default false. -->
	<!-- <customUpdateUI></customUpdateUI> -->
	
	<!-- Whether the application can be launched when the user clicks a link in a web browser.
	Optional. Default false. -->
	<!-- <allowBrowserInvocation></allowBrowserInvocation> -->

	<!-- Listing of file types for which the application can register. Optional. -->
	<!-- <fileTypes> -->

		<!-- Defines one file type. Optional. -->
		<!-- <fileType> -->

			<!-- The name that the system displays for the registered file type. Required. -->
			<!-- <name></name> -->

			<!-- The extension to register. Required. -->
			<!-- <extension></extension> -->
			
			<!-- The description of the file type. Optional. -->
			<!-- <description></description> -->
			
			<!-- The MIME content type. -->
			<!-- <contentType></contentType> -->
			
			<!-- The icon to display for the file type. Optional. -->
			<!-- <icon>
				<image16x16></image16x16>
				<image32x32></image32x32>
				<image48x48></image48x48>
				<image128x128></image128x128>
			</icon> -->
			
		<!-- </fileType> -->
	<!-- </fileTypes> -->

	<!-- Specify Android specific tags that get passed to AndroidManifest.xml file. -->
	<!--<android> 
		<manifestAdditions>
		<![CDATA[
			<manifest android:installLocation="auto">
				<uses-permission android:name="android.permission.INTERNET"/>
				<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
				<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
				<uses-configuration android:reqFiveWayNav="true"/>
				<supports-screens android:normalScreens="true"/>
				<uses-feature android:required="true" android:name="android.hardware.touchscreen.multitouch"/>
				<application android:enabled="true">
					<activity android:excludeFromRecents="false">
						<intent-filter>
							<action android:name="android.intent.action.MAIN"/>
							<category android:name="android.intent.category.LAUNCHER"/>
						</intent-filter>
					</activity>
				</application>
			</manifest>
		]]>
		</manifestAdditions> 
	</android> -->
	<!-- End of the schema for adding the android specific tags in AndroidManifest.xml file -->

<android>
    <manifestAdditions><![CDATA[
	<manifest>
		<!-- See the Adobe AIR documentation for more information about setting Google Android permissions -->
		<uses-permission android:name="android.permission.INTERNET"/>
	</manifest>
]]></manifestAdditions>
  </android>
</application>

XML XML:适用于Blackberry Playbook的Adobe AIR根XML

<qnx>
	<initialWindow>
		<systemChrome>none</systemChrome>
		<transparent>false</transparent>
	</initialWindow>
	<publisher>NameOfPublisher</publisher>
	<category>core.internet</category>
	<icon>
		<image>icons/72x72.png</image>
	</icon>
	<splashscreen>icons/splashscreen.png</splashscreen>
</qnx>

XML 将Sharepoint文件设置为visual studio .Net解决方案

<!-- ### Example edits to elements.xml ### -->
<!--Here is an example of an edited file for a master page...-->

<?xml version="1.0" encoding="utf-8"?>
<Elements xmlns="http://schemas.microsoft.com/sharepoint/">
  <Module Name="masterpagecatalog"  Url="_catalogs/masterpage"  RootWebOnly="TRUE">
  <File Path="masterpagecatalog\LLC.master" Url="LLC.master" Type="GhostableInLibrary" IgnoreIfAlreadyExists="TRUE">
    <Property Name="FeatureId" Value="$SharePoint.Feature.Id$" Type="string"/>
    <Property Name="UIVersion" Value="4" />
    <Property Name="ContentTypeId" Value="0x010105" />
    <Property Name="ContentType" Value="$Resources:cmscore,contenttype_masterpage_name;" />
    <Property Name="MasterPageDescription" Value="Masterpage for Learning Center." />
  </File>
</Module>
</Elements>

<!--And here is an example of an edited file that places files into three different subfolders within the Style Library...-->

<?xml version="1.0" encoding="utf-8"?>
<Elements xmlns="http://schemas.microsoft.com/sharepoint/">
  <Module Name="StyleLibrary" Url="Style Library"  RootWebOnly="TRUE">
    <File Path="StyleLibrary\lilly_main.css" Url="Lilly/lilly_main.css"  Type="GhostableInLibrary" IgnoreIfAlreadyExists="TRUE"  >
      <Property Name="FeatureId" Value="$SharePoint.Feature.Id$" Type="string"/>
    </File>
    <File Path="StyleLibrary\lessons.js" Url="Scripts/lessons.js"  Type="GhostableInLibrary" IgnoreIfAlreadyExists="TRUE"  >
      <Property Name="FeatureId" Value="$SharePoint.Feature.Id$" Type="string"/>
    </File>
    <File Path="StyleLibrary\banner-outlook-rm.jpg" Url="Lilly/images/banner-outlook-rm.jpg"  Type="GhostableInLibrary" IgnoreIfAlreadyExists="TRUE"  >
      <Property Name="FeatureId" Value="$SharePoint.Feature.Id$" Type="string"/>
    </File>
    <File Path="StyleLibrary\bg-persChoiceBottom.jpg" Url="Lilly/images/bg-persChoiceBottom.jpg"  Type="GhostableInLibrary" IgnoreIfAlreadyExists="TRUE"  >
      <Property Name="FeatureId" Value="$SharePoint.Feature.Id$" Type="string"/>
    </File>
    <File Path="StyleLibrary\bg-persChoiceMid.jpg" Url="Lilly/images/bg-persChoiceMid.jpg"  Type="GhostableInLibrary" IgnoreIfAlreadyExists="TRUE"  >
      <Property Name="FeatureId" Value="$SharePoint.Feature.Id$" Type="string"/>
    </File>
    <File Path="StyleLibrary\bg-persChoiceTop.jpg" Url="Lilly/images/bg-persChoiceTop.jpg"  Type="GhostableInLibrary" IgnoreIfAlreadyExists="TRUE"  >
      <Property Name="FeatureId" Value="$SharePoint.Feature.Id$" Type="string"/>
    </File>
    <File Path="StyleLibrary\new-window.png" Url="Lilly/images/new-window.png"  Type="GhostableInLibrary" IgnoreIfAlreadyExists="TRUE"  >
      <Property Name="FeatureId" Value="$SharePoint.Feature.Id$" Type="string"/>
    </File>
  </Module>
 
</Elements>

XML 从“某些”页面中删除阻止

<reference name="right">
   <action method="unsetChild"><name>cart_sidebar</name></action>
   <action method="unsetChild"><name>right.reports.product.viewed</name></action>
</reference>

XML 从每个页面中删除“某些”块

<reference name="right">
            <remove name="cart_sidebar"/>
	    <remove name="right.reports.product.viewed"/>
	</reference>

XML 编译日志

Build Date: 2018-10-17 15:35:11 +0000
--------------------------------------------------------------------------------
PREPARE OUTPUT
--------------------------------------------------------------------------------
Generating platform-specific config.xml from defaults for android at /res/xml/config.xml
Merging project's config.xml into platform-specific android config.xml
Merging and updating files from [www, ../platform_www] to ../assets/www
  copy  www/beep.wav ../assets/www/beep.wav (new file)
  mkdir ../assets/www/cordova-js-src
  mkdir ../assets/www/cordova-js-src/android
  copy  ../platform_www/cordova-js-src/android/nativeapiprovider.js ../assets/www/cordova-js-src/android/nativeapiprovider.js (new file)
  copy  ../platform_www/cordova-js-src/android/promptbasednativeapi.js ../assets/www/cordova-js-src/android/promptbasednativeapi.js (new file)
  copy  ../platform_www/cordova-js-src/exec.js ../assets/www/cordova-js-src/exec.js (new file)
  copy  ../platform_www/cordova-js-src/platform.js ../assets/www/cordova-js-src/platform.js (new file)
  mkdir ../assets/www/cordova-js-src/plugin
  mkdir ../assets/www/cordova-js-src/plugin/android
  copy  ../platform_www/cordova-js-src/plugin/android/app.js ../assets/www/cordova-js-src/plugin/android/app.js (new file)
  copy  ../platform_www/cordova.js ../assets/www/cordova.js (updated file)
  copy  www/css/app.css ../assets/www/css/app.css (new file)
  mkdir ../assets/www/css/images
  copy  www/css/images/banner.png ../assets/www/css/images/banner.png (new file)
  copy  www/css/images/broken.png ../assets/www/css/images/broken.png (new file)
  copy  www/css/images/location-banner.jpg ../assets/www/css/images/location-banner.jpg (new file)
  delete ../assets/www/css/index.css (no source)
  rmdir  ../assets/www/img (no source)
  delete ../assets/www/img/cordova.png (no source)
  delete ../assets/www/img/logo.png (no source)
  copy  www/index.html ../assets/www/index.html (updated file)
  copy  www/js/app.js ../assets/www/js/app.js (new file)
  copy  www/js/config.js ../assets/www/js/config.js (new file)
  copy  www/js/countries.js ../assets/www/js/countries.js (new file)
  copy  www/js/googlemap.js ../assets/www/js/googlemap.js (new file)
  delete ../assets/www/js/index.js (no source)
  copy  www/js/jquery.geocomplete.min.js ../assets/www/js/jquery.geocomplete.min.js (new file)
  copy  www/js/old-openfb.js ../assets/www/js/old-openfb.js (new file)
  copy  www/js/paypal.js ../assets/www/js/paypal.js (new file)
  copy  www/js/tpl.js ../assets/www/js/tpl.js (new file)
  mkdir ../assets/www/lib
  mkdir ../assets/www/lib/angular
  copy  www/lib/angular/README.md ../assets/www/lib/angular/README.md (new file)
  copy  www/lib/angular/angular-csp.css ../assets/www/lib/angular/angular-csp.css (new file)
  copy  www/lib/angular/angular.js ../assets/www/lib/angular/angular.js (new file)
  copy  www/lib/angular/angular.min.js ../assets/www/lib/angular/angular.min.js (new file)
  copy  www/lib/angular/angular.min.js.gzip ../assets/www/lib/angular/angular.min.js.gzip (new file)
  copy  www/lib/angular/angular.min.js.map ../assets/www/lib/angular/angular.min.js.map (new file)
  copy  www/lib/angular/bower.json ../assets/www/lib/angular/bower.json (new file)
  copy  www/lib/angular/index.js ../assets/www/lib/angular/index.js (new file)
  copy  www/lib/angular/package.json ../assets/www/lib/angular/package.json (new file)
  copy  www/lib/imagesloaded.pkgd.min.js ../assets/www/lib/imagesloaded.pkgd.min.js (new file)
  mkdir ../assets/www/lib/intel
  mkdir ../assets/www/lib/intel/build
  mkdir ../assets/www/lib/intel/build/css
  copy  www/lib/intel/build/css/demo.css ../assets/www/lib/intel/build/css/demo.css (new file)
  copy  www/lib/intel/build/css/intlTelInput-modified.css ../assets/www/lib/intel/build/css/intlTelInput-modified.css (new file)
  copy  www/lib/intel/build/css/intlTelInput.css ../assets/www/lib/intel/build/css/intlTelInput.css (new file)
  mkdir ../assets/www/lib/intel/build/img
  copy  www/lib/intel/build/img/flags.png ../assets/www/lib/intel/build/img/flags.png (new file)
  copy  www/lib/intel/build/img/flags@2x.png ../assets/www/lib/intel/build/img/flags@2x.png (new file)
  mkdir ../assets/www/lib/intel/build/js
  copy  www/lib/intel/build/js/intlTelInput.js ../assets/www/lib/intel/build/js/intlTelInput.js (new file)
  copy  www/lib/intel/build/js/intlTelInput.min.js ../assets/www/lib/intel/build/js/intlTelInput.min.js (new file)
  mkdir ../assets/www/lib/intel/lib
  mkdir ../assets/www/lib/intel/lib/libphonenumber
  mkdir ../assets/www/lib/intel/lib/libphonenumber/build
  copy  www/lib/intel/lib/libphonenumber/build/utils.js ../assets/www/lib/intel/lib/libphonenumber/build/utils.js (new file)
  mkdir ../assets/www/lib/intel/lib/libphonenumber/src
  copy  www/lib/intel/lib/libphonenumber/src/utils.js ../assets/www/lib/intel/lib/libphonenumber/src/utils.js (new file)
  mkdir ../assets/www/lib/intel/region-flags
  mkdir ../assets/www/lib/intel/src
  mkdir ../assets/www/lib/intel/src/css
  copy  www/lib/intel/src/css/demo.scss ../assets/www/lib/intel/src/css/demo.scss (new file)
  copy  www/lib/intel/src/css/intlTelInput.scss ../assets/www/lib/intel/src/css/intlTelInput.scss (new file)
  copy  www/lib/intel/src/css/sprite.scss ../assets/www/lib/intel/src/css/sprite.scss (new file)
  copy  www/lib/intel/src/css/sprite@2x.scss ../assets/www/lib/intel/src/css/sprite@2x.scss (new file)
  mkdir ../assets/www/lib/intel/src/js
  copy  www/lib/intel/src/js/data.js ../assets/www/lib/intel/src/js/data.js (new file)
  copy  www/lib/intel/src/js/intlTelInput.js ../assets/www/lib/intel/src/js/intlTelInput.js (new file)
  copy  www/lib/intel/src/js/wrapper.js.ejs ../assets/www/lib/intel/src/js/wrapper.js.ejs (new file)
  mkdir ../assets/www/lib/intel/src/spec
  mkdir ../assets/www/lib/intel/src/spec/helpers
  copy  www/lib/intel/src/spec/helpers/helpers.js ../assets/www/lib/intel/src/spec/helpers/helpers.js (new file)
  mkdir ../assets/www/lib/intel/src/spec/tests
  mkdir ../assets/www/lib/intel/src/spec/tests/methods
  copy  www/lib/intel/src/spec/tests/methods/destroy.js ../assets/www/lib/intel/src/spec/tests/methods/destroy.js (new file)
  copy  www/lib/intel/src/spec/tests/methods/getCountryData.js ../assets/www/lib/intel/src/spec/tests/methods/getCountryData.js (new file)
  copy  www/lib/intel/src/spec/tests/methods/getSelectedCountryData.js ../assets/www/lib/intel/src/spec/tests/methods/getSelectedCountryData.js (new file)
  copy  www/lib/intel/src/spec/tests/methods/isValidNumber.js ../assets/www/lib/intel/src/spec/tests/methods/isValidNumber.js (new file)
  copy  www/lib/intel/src/spec/tests/methods/selectCountry.js ../assets/www/lib/intel/src/spec/tests/methods/selectCountry.js (new file)
  copy  www/lib/intel/src/spec/tests/methods/setNumber.js ../assets/www/lib/intel/src/spec/tests/methods/setNumber.js (new file)
  mkdir ../assets/www/lib/intel/src/spec/tests/options
  copy  www/lib/intel/src/spec/tests/options/autoFormat.js ../assets/www/lib/intel/src/spec/tests/options/autoFormat.js (new file)
  copy  www/lib/intel/src/spec/tests/options/autoHideDialCode.js ../assets/www/lib/intel/src/spec/tests/options/autoHideDialCode.js (new file)
  copy  www/lib/intel/src/spec/tests/options/defaultCountry.js ../assets/www/lib/intel/src/spec/tests/options/defaultCountry.js (new file)
  copy  www/lib/intel/src/spec/tests/options/nationalMode.js ../assets/www/lib/intel/src/spec/tests/options/nationalMode.js (new file)
  copy  www/lib/intel/src/spec/tests/options/onlyCountries.js ../assets/www/lib/intel/src/spec/tests/options/onlyCountries.js (new file)
  copy  www/lib/intel/src/spec/tests/options/preferredCountries.js ../assets/www/lib/intel/src/spec/tests/options/preferredCountries.js (new file)
  copy  www/lib/intel/src/spec/tests/options/utilsScript.js ../assets/www/lib/intel/src/spec/tests/options/utilsScript.js (new file)
  mkdir ../assets/www/lib/intel/src/spec/tests/vanilla
  copy  www/lib/intel/src/spec/tests/vanilla/core.js ../assets/www/lib/intel/src/spec/tests/vanilla/core.js (new file)
  copy  www/lib/intel/src/spec/tests/vanilla/keyboardShortcuts.js ../assets/www/lib/intel/src/spec/tests/vanilla/keyboardShortcuts.js (new file)
  copy  www/lib/intel/src/spec/tests/vanilla/multipleInstances.js ../assets/www/lib/intel/src/spec/tests/vanilla/multipleInstances.js (new file)
  copy  www/lib/jquery-1.10.2.min.js ../assets/www/lib/jquery-1.10.2.min.js (new file)
  copy  www/lib/jquery-1.11.1.min.js ../assets/www/lib/jquery-1.11.1.min.js (new file)
  copy  www/lib/jquery-1.11.3.min.js ../assets/www/lib/jquery-1.11.3.min.js (new file)
  copy  www/lib/jquery.form-validator.min.js ../assets/www/lib/jquery.form-validator.min.js (new file)
  copy  www/lib/jquery.mask.min.js ../assets/www/lib/jquery.mask.min.js (new file)
  copy  www/lib/jquery.translate.js ../assets/www/lib/jquery.translate.js (new file)
  mkdir ../assets/www/lib/mobiscroll
  mkdir ../assets/www/lib/mobiscroll/css
  copy  www/lib/mobiscroll/css/mobiscroll.android-holo-light.css ../assets/www/lib/mobiscroll/css/mobiscroll.android-holo-light.css (new file)
  copy  www/lib/mobiscroll/css/mobiscroll.animation.css ../assets/www/lib/mobiscroll/css/mobiscroll.animation.css (new file)
  copy  www/lib/mobiscroll/css/mobiscroll.frame.android-holo.css ../assets/www/lib/mobiscroll/css/mobiscroll.frame.android-holo.css (new file)
  copy  www/lib/mobiscroll/css/mobiscroll.frame.android.css ../assets/www/lib/mobiscroll/css/mobiscroll.frame.android.css (new file)
  copy  www/lib/mobiscroll/css/mobiscroll.frame.css ../assets/www/lib/mobiscroll/css/mobiscroll.frame.css (new file)
  copy  www/lib/mobiscroll/css/mobiscroll.frame.ios-classic.css ../assets/www/lib/mobiscroll/css/mobiscroll.frame.ios-classic.css (new file)
  copy  www/lib/mobiscroll/css/mobiscroll.frame.ios.css ../assets/www/lib/mobiscroll/css/mobiscroll.frame.ios.css (new file)
  copy  www/lib/mobiscroll/css/mobiscroll.frame.jqm.css ../assets/www/lib/mobiscroll/css/mobiscroll.frame.jqm.css (new file)
  copy  www/lib/mobiscroll/css/mobiscroll.frame.sense-ui.css ../assets/www/lib/mobiscroll/css/mobiscroll.frame.sense-ui.css (new file)
  copy  www/lib/mobiscroll/css/mobiscroll.frame.wp.css ../assets/www/lib/mobiscroll/css/mobiscroll.frame.wp.css (new file)
  copy  www/lib/mobiscroll/css/mobiscroll.icons.css ../assets/www/lib/mobiscroll/css/mobiscroll.icons.css (new file)
  copy  www/lib/mobiscroll/css/mobiscroll.image.css ../assets/www/lib/mobiscroll/css/mobiscroll.image.css (new file)
  copy  www/lib/mobiscroll/css/mobiscroll.mobiscroll-dark.css ../assets/www/lib/mobiscroll/css/mobiscroll.mobiscroll-dark.css (new file)
  copy  www/lib/mobiscroll/css/mobiscroll.scroller.android-holo.css ../assets/www/lib/mobiscroll/css/mobiscroll.scroller.android-holo.css (new file)
  copy  www/lib/mobiscroll/css/mobiscroll.scroller.android.css ../assets/www/lib/mobiscroll/css/mobiscroll.scroller.android.css (new file)
  copy  www/lib/mobiscroll/css/mobiscroll.scroller.css ../assets/www/lib/mobiscroll/css/mobiscroll.scroller.css (new file)
  copy  www/lib/mobiscroll/css/mobiscroll.scroller.ios-classic.css ../assets/www/lib/mobiscroll/css/mobiscroll.scroller.ios-classic.css (new file)
  copy  www/lib/mobiscroll/css/mobiscroll.scroller.ios.css ../assets/www/lib/mobiscroll/css/mobiscroll.scroller.ios.css (new file)
  copy  www/lib/mobiscroll/css/mobiscroll.scroller.jqm.css ../assets/www/lib/mobiscroll/css/mobiscroll.scroller.jqm.css (new file)
  copy  www/lib/mobiscroll/css/mobiscroll.scroller.sense-ui.css ../assets/www/lib/mobiscroll/css/mobiscroll.scroller.sense-ui.css (new file)
  copy  www/lib/mobiscroll/css/mobiscroll.scroller.wp.css ../assets/www/lib/mobiscroll/css/mobiscroll.scroller.wp.css (new file)
  copy  www/lib/mobiscroll/css/mobiscroll.wp-light.css ../assets/www/lib/mobiscroll/css/mobiscroll.wp-light.css (new file)
  mkdir ../assets/www/lib/mobiscroll/js
  mkdir ../assets/www/lib/mobiscroll/js/i18n
  copy  www/lib/mobiscroll/js/i18n/mobiscroll.i18n.cs.js ../assets/www/lib/mobiscroll/js/i18n/mobiscroll.i18n.cs.js (new file)
  copy  www/lib/mobiscroll/js/i18n/mobiscroll.i18n.de.js ../assets/www/lib/mobiscroll/js/i18n/mobiscroll.i18n.de.js (new file)
  copy  www/lib/mobiscroll/js/i18n/mobiscroll.i18n.en-UK.js ../assets/www/lib/mobiscroll/js/i18n/mobiscroll.i18n.en-UK.js (new file)
  copy  www/lib/mobiscroll/js/i18n/mobiscroll.i18n.es.js ../assets/www/lib/mobiscroll/js/i18n/mobiscroll.i18n.es.js (new file)
  copy  www/lib/mobiscroll/js/i18n/mobiscroll.i18n.fa.js ../assets/www/lib/mobiscroll/js/i18n/mobiscroll.i18n.fa.js (new file)
  copy  www/lib/mobiscroll/js/i18n/mobiscroll.i18n.fr.js ../assets/www/lib/mobiscroll/js/i18n/mobiscroll.i18n.fr.js (new file)
  copy  www/lib/mobiscroll/js/i18n/mobiscroll.i18n.hu.js ../assets/www/lib/mobiscroll/js/i18n/mobiscroll.i18n.hu.js (new file)
  copy  www/lib/mobiscroll/js/i18n/mobiscroll.i18n.it.js ../assets/www/lib/mobiscroll/js/i18n/mobiscroll.i18n.it.js (new file)
  copy  www/lib/mobiscroll/js/i18n/mobiscroll.i18n.ja.js ../assets/www/lib/mobiscroll/js/i18n/mobiscroll.i18n.ja.js (new file)
  copy  www/lib/mobiscroll/js/i18n/mobiscroll.i18n.lt.js ../assets/www/lib/mobiscroll/js/i18n/mobiscroll.i18n.lt.js (new file)
  copy  www/lib/mobiscroll/js/i18n/mobiscroll.i18n.nl.js ../assets/www/lib/mobiscroll/js/i18n/mobiscroll.i18n.nl.js (new file)
  copy  www/lib/mobiscroll/js/i18n/mobiscroll.i18n.no.js ../assets/www/lib/mobiscroll/js/i18n/mobiscroll.i18n.no.js (new file)
  copy  www/lib/mobiscroll/js/i18n/mobiscroll.i18n.pl.js ../assets/www/lib/mobiscroll/js/i18n/mobiscroll.i18n.pl.js (new file)
  copy  www/lib/mobiscroll/js/i18n/mobiscroll.i18n.pt-BR.js ../assets/www/lib/mobiscroll/js/i18n/mobiscroll.i18n.pt-BR.js (new file)
  copy  www/lib/mobiscroll/js/i18n/mobiscroll.i18n.pt-PT.js ../assets/www/lib/mobiscroll/js/i18n/mobiscroll.i18n.pt-PT.js (new file)
  copy  www/lib/mobiscroll/js/i18n/mobiscroll.i18n.ro.js ../assets/www/lib/mobiscroll/js/i18n/mobiscroll.i18n.ro.js (new file)
  copy  www/lib/mobiscroll/js/i18n/mobiscroll.i18n.ru-UA.js ../assets/www/lib/mobiscroll/js/i18n/mobiscroll.i18n.ru-UA.js (new file)
  copy  www/lib/mobiscroll/js/i18n/mobiscroll.i18n.ru.js ../assets/www/lib/mobiscroll/js/i18n/mobiscroll.i18n.ru.js (new file)
  copy  www/lib/mobiscroll/js/i18n/mobiscroll.i18n.sk.js ../assets/www/lib/mobiscroll/js/i18n/mobiscroll.i18n.sk.js (new file)
  copy  www/lib/mobiscroll/js/i18n/mobiscroll.i18n.sv.js ../assets/www/lib/mobiscroll/js/i18n/mobiscroll.i18n.sv.js (new file)
  copy  www/lib/mobiscroll/js/i18n/mobiscroll.i18n.tr.js ../assets/www/lib/mobiscroll/js/i18n/mobiscroll.i18n.tr.js (new file)
  copy  www/lib/mobiscroll/js/i18n/mobiscroll.i18n.zh.js ../assets/www/lib/mobiscroll/js/i18n/mobiscroll.i18n.zh.js (new file)
  copy  www/lib/mobiscroll/js/mobiscroll.android-holo-light.js ../assets/www/lib/mobiscroll/js/mobiscroll.android-holo-light.js (new file)
  copy  www/lib/mobiscroll/js/mobiscroll.appframework.js ../assets/www/lib/mobiscroll/js/mobiscroll.appframework.js (new file)
  copy  www/lib/mobiscroll/js/mobiscroll.core.js ../assets/www/lib/mobiscroll/js/mobiscroll.core.js (new file)
  copy  www/lib/mobiscroll/js/mobiscroll.datetime.js ../assets/www/lib/mobiscroll/js/mobiscroll.datetime.js (new file)
  copy  www/lib/mobiscroll/js/mobiscroll.datetimebase.js ../assets/www/lib/mobiscroll/js/mobiscroll.datetimebase.js (new file)
  copy  www/lib/mobiscroll/js/mobiscroll.frame.android-holo.js ../assets/www/lib/mobiscroll/js/mobiscroll.frame.android-holo.js (new file)
  copy  www/lib/mobiscroll/js/mobiscroll.frame.android.js ../assets/www/lib/mobiscroll/js/mobiscroll.frame.android.js (new file)
  copy  www/lib/mobiscroll/js/mobiscroll.frame.ios-classic.js ../assets/www/lib/mobiscroll/js/mobiscroll.frame.ios-classic.js (new file)
  copy  www/lib/mobiscroll/js/mobiscroll.frame.ios.js ../assets/www/lib/mobiscroll/js/mobiscroll.frame.ios.js (new file)
  copy  www/lib/mobiscroll/js/mobiscroll.frame.jqm.js ../assets/www/lib/mobiscroll/js/mobiscroll.frame.jqm.js (new file)
  copy  www/lib/mobiscroll/js/mobiscroll.frame.js ../assets/www/lib/mobiscroll/js/mobiscroll.frame.js (new file)
  copy  www/lib/mobiscroll/js/mobiscroll.frame.sense-ui.js ../assets/www/lib/mobiscroll/js/mobiscroll.frame.sense-ui.js (new file)
  copy  www/lib/mobiscroll/js/mobiscroll.frame.wp.js ../assets/www/lib/mobiscroll/js/mobiscroll.frame.wp.js (new file)
  copy  www/lib/mobiscroll/js/mobiscroll.image.js ../assets/www/lib/mobiscroll/js/mobiscroll.image.js (new file)
  copy  www/lib/mobiscroll/js/mobiscroll.jqmwidget.js ../assets/www/lib/mobiscroll/js/mobiscroll.jqmwidget.js (new file)
  copy  www/lib/mobiscroll/js/mobiscroll.listbase.js ../assets/www/lib/mobiscroll/js/mobiscroll.listbase.js (new file)
  copy  www/lib/mobiscroll/js/mobiscroll.mobiscroll-dark.js ../assets/www/lib/mobiscroll/js/mobiscroll.mobiscroll-dark.js (new file)
  copy  www/lib/mobiscroll/js/mobiscroll.scroller.js ../assets/www/lib/mobiscroll/js/mobiscroll.scroller.js (new file)
  copy  www/lib/mobiscroll/js/mobiscroll.select.js ../assets/www/lib/mobiscroll/js/mobiscroll.select.js (new file)
  copy  www/lib/mobiscroll/js/mobiscroll.treelist.js ../assets/www/lib/mobiscroll/js/mobiscroll.treelist.js (new file)
  copy  www/lib/mobiscroll/js/mobiscroll.util.datetime.js ../assets/www/lib/mobiscroll/js/mobiscroll.util.datetime.js (new file)
  copy  www/lib/mobiscroll/js/mobiscroll.wp-light.js ../assets/www/lib/mobiscroll/js/mobiscroll.wp-light.js (new file)
  copy  www/lib/mobiscroll/js/mobiscroll.zepto.js ../assets/www/lib/mobiscroll/js/mobiscroll.zepto.js (new file)
  mkdir ../assets/www/lib/onsen
  mkdir ../assets/www/lib/onsen/css
  mkdir ../assets/www/lib/onsen/css/font_awesome
  mkdir ../assets/www/lib/onsen/css/font_awesome/css
  copy  www/lib/onsen/css/font_awesome/css/font-awesome.css ../assets/www/lib/onsen/css/font_awesome/css/font-awesome.css (new file)
  copy  www/lib/onsen/css/font_awesome/css/font-awesome.min.css ../assets/www/lib/onsen/css/font_awesome/css/font-awesome.min.css (new file)
  mkdir ../assets/www/lib/onsen/css/font_awesome/fonts
  copy  www/lib/onsen/css/font_awesome/fonts/FontAwesome.otf ../assets/www/lib/onsen/css/font_awesome/fonts/FontAwesome.otf (new file)
  copy  www/lib/onsen/css/font_awesome/fonts/fontawesome-webfont.eot ../assets/www/lib/onsen/css/font_awesome/fonts/fontawesome-webfont.eot (new file)
  copy  www/lib/onsen/css/font_awesome/fonts/fontawesome-webfont.svg ../assets/www/lib/onsen/css/font_awesome/fonts/fontawesome-webfont.svg (new file)
  copy  www/lib/onsen/css/font_awesome/fonts/fontawesome-webfont.ttf ../assets/www/lib/onsen/css/font_awesome/fonts/fontawesome-webfont.ttf (new file)
  copy  www/lib/onsen/css/font_awesome/fonts/fontawesome-webfont.woff ../assets/www/lib/onsen/css/font_awesome/fonts/fontawesome-webfont.woff (new file)
  copy  www/lib/onsen/css/font_awesome/fonts/fontawesome-webfont.woff2 ../assets/www/lib/onsen/css/font_awesome/fonts/fontawesome-webfont.woff2 (new file)
  mkdir ../assets/www/lib/onsen/css/ionicons
  mkdir ../assets/www/lib/onsen/css/ionicons/css
  copy  www/lib/onsen/css/ionicons/css/ionicons.css ../assets/www/lib/onsen/css/ionicons/css/ionicons.css (new file)
  copy  www/lib/onsen/css/ionicons/css/ionicons.min.css ../assets/www/lib/onsen/css/ionicons/css/ionicons.min.css (new file)
  mkdir ../assets/www/lib/onsen/css/ionicons/fonts
  copy  www/lib/onsen/css/ionicons/fonts/ionicons.eot ../assets/www/lib/onsen/css/ionicons/fonts/ionicons.eot (new file)
  copy  www/lib/onsen/css/ionicons/fonts/ionicons.svg ../assets/www/lib/onsen/css/ionicons/fonts/ionicons.svg (new file)
  copy  www/lib/onsen/css/ionicons/fonts/ionicons.ttf ../assets/www/lib/onsen/css/ionicons/fonts/ionicons.ttf (new file)
  copy  www/lib/onsen/css/ionicons/fonts/ionicons.woff ../assets/www/lib/onsen/css/ionicons/fonts/ionicons.woff (new file)
  copy  www/lib/onsen/css/onsen-css-components-blue-basic-theme.css ../assets/www/lib/onsen/css/onsen-css-components-blue-basic-theme.css (new file)
  copy  www/lib/onsen/css/onsen-css-components-blue-theme.css ../assets/www/lib/onsen/css/onsen-css-components-blue-theme.css (new file)
  copy  www/lib/onsen/css/onsen-css-components-dark-theme.css ../assets/www/lib/onsen/css/onsen-css-components-dark-theme.css (new file)
  copy  www/lib/onsen/css/onsen-css-components-default.css ../assets/www/lib/onsen/css/onsen-css-components-default.css (new file)
  copy  www/lib/onsen/css/onsen-css-components-purple-theme.css ../assets/www/lib/onsen/css/onsen-css-components-purple-theme.css (new file)
  copy  www/lib/onsen/css/onsen-css-components-sunshine-theme.css ../assets/www/lib/onsen/css/onsen-css-components-sunshine-theme.css (new file)
  copy  www/lib/onsen/css/onsen-css-components.css ../assets/www/lib/onsen/css/onsen-css-components.css (new file)
  copy  www/lib/onsen/css/onsenui.css ../assets/www/lib/onsen/css/onsenui.css (new file)
  mkdir ../assets/www/lib/onsen/js
  copy  www/lib/onsen/js/onsenui.js ../assets/www/lib/onsen/js/onsenui.js (new file)
  copy  www/lib/onsen/js/onsenui.min.js ../assets/www/lib/onsen/js/onsenui.min.js (new file)
  copy  www/lib/onsen/js/onsenui_all.js ../assets/www/lib/onsen/js/onsenui_all.js (new file)
  copy  www/lib/onsen/js/onsenui_all.min.js ../assets/www/lib/onsen/js/onsenui_all.min.js (new file)
  mkdir ../assets/www/lib/onsen/stylus
  copy  www/lib/onsen/stylus/blue-basic-theme.styl ../assets/www/lib/onsen/stylus/blue-basic-theme.styl (new file)
  copy  www/lib/onsen/stylus/blue-theme.styl ../assets/www/lib/onsen/stylus/blue-theme.styl (new file)
  mkdir ../assets/www/lib/onsen/stylus/components
  copy  www/lib/onsen/stylus/components/alert-dialog.styl ../assets/www/lib/onsen/stylus/components/alert-dialog.styl (new file)
  copy  www/lib/onsen/stylus/components/button-bar.styl ../assets/www/lib/onsen/stylus/components/button-bar.styl (new file)
  copy  www/lib/onsen/stylus/components/button.styl ../assets/www/lib/onsen/stylus/components/button.styl (new file)
  copy  www/lib/onsen/stylus/components/checkbox.styl ../assets/www/lib/onsen/stylus/components/checkbox.styl (new file)
  copy  www/lib/onsen/stylus/components/dialog.styl ../assets/www/lib/onsen/stylus/components/dialog.styl (new file)
  copy  www/lib/onsen/stylus/components/global.styl ../assets/www/lib/onsen/stylus/components/global.styl (new file)
  copy  www/lib/onsen/stylus/components/index.styl ../assets/www/lib/onsen/stylus/components/index.styl (new file)
  copy  www/lib/onsen/stylus/components/list.styl ../assets/www/lib/onsen/stylus/components/list.styl (new file)
  copy  www/lib/onsen/stylus/components/modal.styl ../assets/www/lib/onsen/stylus/components/modal.styl (new file)
  copy  www/lib/onsen/stylus/components/navigation-bar.styl ../assets/www/lib/onsen/stylus/components/navigation-bar.styl (new file)
  copy  www/lib/onsen/stylus/components/notification.styl ../assets/www/lib/onsen/stylus/components/notification.styl (new file)
  copy  www/lib/onsen/stylus/components/page.styl ../assets/www/lib/onsen/stylus/components/page.styl (new file)
  copy  www/lib/onsen/stylus/components/popover.styl ../assets/www/lib/onsen/stylus/components/popover.styl (new file)
  copy  www/lib/onsen/stylus/components/radio-button.styl ../assets/www/lib/onsen/stylus/components/radio-button.styl (new file)
  copy  www/lib/onsen/stylus/components/range.styl ../assets/www/lib/onsen/stylus/components/range.styl (new file)
  copy  www/lib/onsen/stylus/components/search-input.styl ../assets/www/lib/onsen/stylus/components/search-input.styl (new file)
  copy  www/lib/onsen/stylus/components/switch.styl ../assets/www/lib/onsen/stylus/components/switch.styl (new file)
  copy  www/lib/onsen/stylus/components/tab-bar.styl ../assets/www/lib/onsen/stylus/components/tab-bar.styl (new file)
  copy  www/lib/onsen/stylus/components/text-input.styl ../assets/www/lib/onsen/stylus/components/text-input.styl (new file)
  copy  www/lib/onsen/stylus/components/textarea.styl ../assets/www/lib/onsen/stylus/components/textarea.styl (new file)
  copy  www/lib/onsen/stylus/components/toolbar-button.styl ../assets/www/lib/onsen/stylus/components/toolbar-button.styl (new file)
  copy  www/lib/onsen/stylus/components/util.styl ../assets/www/lib/onsen/stylus/components/util.styl (new file)
  copy  www/lib/onsen/stylus/dark-theme.styl ../assets/www/lib/onsen/stylus/dark-theme.styl (new file)
  copy  www/lib/onsen/stylus/purple-theme.styl ../assets/www/lib/onsen/stylus/purple-theme.styl (new file)
  copy  www/lib/onsen/stylus/sunshine-theme.styl ../assets/www/lib/onsen/stylus/sunshine-theme.styl (new file)
  copy  www/lib/paypal-mobile-js-helper.js ../assets/www/lib/paypal-mobile-js-helper.js (new file)
  mkdir ../assets/www/lib/raty
  mkdir ../assets/www/lib/raty/fonts
  copy  www/lib/raty/fonts/raty.eot ../assets/www/lib/raty/fonts/raty.eot (new file)
  copy  www/lib/raty/fonts/raty.svg ../assets/www/lib/raty/fonts/raty.svg (new file)
  copy  www/lib/raty/fonts/raty.ttf ../assets/www/lib/raty/fonts/raty.ttf (new file)
  copy  www/lib/raty/fonts/raty.woff ../assets/www/lib/raty/fonts/raty.woff (new file)
  mkdir ../assets/www/lib/raty/images
  copy  www/lib/raty/images/cancel-off.png ../assets/www/lib/raty/images/cancel-off.png (new file)
  copy  www/lib/raty/images/cancel-on.png ../assets/www/lib/raty/images/cancel-on.png (new file)
  copy  www/lib/raty/images/star-half.png ../assets/www/lib/raty/images/star-half.png (new file)
  copy  www/lib/raty/images/star-off.png ../assets/www/lib/raty/images/star-off.png (new file)
  copy  www/lib/raty/images/star-on.png ../assets/www/lib/raty/images/star-on.png (new file)
  copy  www/lib/raty/jquery.raty.css ../assets/www/lib/raty/jquery.raty.css (new file)
  copy  www/lib/raty/jquery.raty.js ../assets/www/lib/raty/jquery.raty.js (new file)
  copy  www/logoutcallback.html ../assets/www/logoutcallback.html (new file)
  copy  www/oauthcallback.html ../assets/www/oauthcallback.html (new file)
  mkdir ../assets/www/scripts
  copy  www/scripts/index.js ../assets/www/scripts/index.js (new file)
  copy  www/scripts/platformOverrides.js ../assets/www/scripts/platformOverrides.js (new file)
Wrote out android application name "m6obil6e" to /res/values/strings.xml
android-versionCode not found in config.xml. Generating a code based on version in config.xml (2.5): 20500
Wrote out Android package name "kmrs.m6obil6e.app" to /src/kmrs/m6obil6e/app/m6obil6e.java
Updating icons at ../res
  copy  res/icons/android/drawable-hdpi-icon.png ../res/mipmap-hdpi/icon.png (new file)
  copy  res/icons/android/drawable-ldpi-icon.png ../res/mipmap-ldpi/icon.png (new file)
  copy  res/icons/android/drawable-mdpi-icon.png ../res/mipmap-mdpi/icon.png (new file)
  copy  res/icons/android/drawable-xhdpi-icon.png ../res/mipmap-xhdpi/icon.png (new file)
  copy  res/icons/android/drawable-xxhdpi-icon.png ../res/mipmap-xxhdpi/icon.png (new file)
  copy  res/icons/android/drawable-xxxhdpi-icon.png ../res/mipmap-xxxhdpi/icon.png (new file)
Updating splash screens at ../res
  copy  res/screens/android/drawable-land-hdpi-screen.png ../res/drawable-land-hdpi/screen.png (new file)
  copy  res/screens/android/drawable-land-ldpi-screen.png ../res/drawable-land-ldpi/screen.png (new file)
  copy  res/screens/android/drawable-land-mdpi-screen.png ../res/drawable-land-mdpi/screen.png (new file)
  copy  res/screens/android/drawable-land-xhdpi-screen.png ../res/drawable-land-xhdpi/screen.png (new file)
  copy  res/screens/android/drawable-land-xxhdpi-screen.png ../res/drawable-land-xxhdpi/screen.png (new file)
  copy  res/screens/android/drawable-land-xxxhdpi-screen.png ../res/drawable-land-xxxhdpi/screen.png (new file)
  copy  res/screens/android/drawable-port-hdpi-screen.png ../res/drawable-port-hdpi/screen.png (new file)
  copy  res/screens/android/drawable-port-ldpi-screen.png ../res/drawable-port-ldpi/screen.png (new file)
  copy  res/screens/android/drawable-port-mdpi-screen.png ../res/drawable-port-mdpi/screen.png (new file)
  copy  res/screens/android/drawable-port-xhdpi-screen.png ../res/drawable-port-xhdpi/screen.png (new file)
  copy  res/screens/android/drawable-port-xxhdpi-screen.png ../res/drawable-port-xxhdpi/screen.png (new file)
  copy  res/screens/android/drawable-port-xxxhdpi-screen.png ../res/drawable-port-xxxhdpi/screen.png (new file)
Updating resource files at ..
  copy  www/beep.wav ../res/raw/beep.wav (new file)
Prepared android project successfully
--------------------------------------------------------------------------------
PLUGIN OUTPUT
--------------------------------------------------------------------------------
Fetching plugin "cordova-plugin-whitelist" via npm
Installing "cordova-plugin-whitelist" at "1.3.3" for android

               This plugin is only applicable for versions of cordova-android greater than 4.0. If you have a previous platform version, you do *not* need this plugin since the whitelist will be built in.
Fetching plugin "phonegap-plugin-push@1.11.1" via npm
Installing "phonegap-plugin-push" at "1.11.1" for android
Subproject Path: CordovaLib
Fetching plugin "com.paypal.cordova.mobilesdk" via npm
Installing "com.paypal.cordova.mobilesdk" at "3.5.0" for android
Fetching plugin "card.io.cordova.mobilesdk@2.1.0" via npm
Installing "card.io.cordova.mobilesdk" at "2.1.0" for android
Subproject Path: CordovaLib
Subproject Path: CordovaLib
Fetching plugin "cordova-plugin-device" via npm
Installing "cordova-plugin-device" at "2.0.2" for android
Fetching plugin "cordova-plugin-inappbrowser" via npm
Installing "cordova-plugin-inappbrowser" at "3.0.0" for android
Fetching plugin "cordova-plugin-splashscreen" via npm
Installing "cordova-plugin-splashscreen" at "5.0.2" for android
Fetching plugin "cordova-plugin-geolocation@1.0.1" via npm
Installing "cordova-plugin-geolocation" at "1.0.1" for android
Fetching plugin "cordova-plugin-network-information" via npm
Installing "cordova-plugin-network-information" at "2.0.1" for android
Fetching plugin "cordova-plugin-request-location-accuracy@2.2.0" via npm
Installing "cordova-plugin-request-location-accuracy" at "2.2.0" for android
Subproject Path: CordovaLib
Fetching plugin "cordova-plugin-x-toast@2.6.0" via npm
Installing "cordova-plugin-x-toast" at "2.6.0" for android
Fetching plugin "https://github.com/razorpay/razorpay-cordova.git" via git clone
Using shallow clone
Repository "https://github.com/razorpay/razorpay-cordova.git" checked out to git ref "v1.3.4" at "056e71d".
Installing "com.razorpay.cordova" at "0.16.1" for android
Subproject Path: CordovaLib
Fetching plugin "cordova-plugin-media@3.0.0" via npm
Installing "cordova-plugin-media" at "3.0.0" for android
Fetching plugin "cordova-plugin-file@^4.0.0" via npm
Installing "cordova-plugin-file" at "4.3.3" for android
Fetching plugin "cordova-plugin-compat@^1.0.0" via npm
Installing "cordova-plugin-compat" at "1.2.0" for android
Plugin doesn't support this project's cordova-android version. cordova-android: 6.3.0, failed version requirement: 
      <6.3.0
Skipping 'cordova-plugin-compat' for android

The Android Persistent storage location now defaults to "Internal". Please check this plugin's README to see if your application needs any changes in its config.xml.

If this is a new application no changes are required.

If this is an update to an existing application that did not specify an "AndroidPersistentFileLocation" you may need to add:

      "<preference name="AndroidPersistentFileLocation" value="Compatibility" />"

to config.xml in order for the application to find previously stored files.
        
Plugin dependency "cordova-plugin-compat@1.2.0" already fetched, using that version.
Installing "cordova-plugin-compat" at "1.2.0" for android
Plugin doesn't support this project's cordova-android version. cordova-android: 6.3.0, failed version requirement: 
      <6.3.0
Skipping 'cordova-plugin-compat' for android
Fetching plugin "cordova.plugins.diagnostic@3.7.1" via npm
Installing "cordova.plugins.diagnostic" at "3.7.1" for android
Subproject Path: CordovaLib
Fetching plugin "cordova-plugin-googlemaps-plus@1.4.1" via npm
Installing "cordova-plugin-googlemaps-plus" at "1.4.0" for android
Subproject Path: CordovaLib

             In order to run this plugin, you need to obtain Google Maps API key for Android.
             Visit https://github.com/mapsplugin/cordova-plugin-googlemaps/wiki/Installation

             Check our release notes.
             https://github.com/wf9a5m75/phonegap-googlemaps-plugin/wiki/Release-Notes
Fetching plugin "cordova-plugin-buildinfo@1.1.0" via npm
Installing "cordova-plugin-buildinfo" at "1.1.0" for android
Fetching plugin "cordova-plugin-googleplus@5.1.1" via npm
Installing "cordova-plugin-googleplus" at "5.1.1" for android
Subproject Path: CordovaLib
Fetching plugin "cordova-plugin-camera@2.4.1" via npm
Installing "cordova-plugin-camera" at "2.4.1" for android
Plugin dependency "cordova-plugin-compat@1.2.0" already fetched, using that version.
Installing "cordova-plugin-compat" at "1.2.0" for android
Plugin doesn't support this project's cordova-android version. cordova-android: 6.3.0, failed version requirement: 
      <6.3.0
Skipping 'cordova-plugin-compat' for android
Subproject Path: CordovaLib
Fetching plugin "cordova-plugin-file-transfer@1.6.2" via npm
Installing "cordova-plugin-file-transfer" at "1.6.2" for android
Plugin dependency "cordova-plugin-file@4.3.3" already fetched, using that version.
Dependent plugin "cordova-plugin-file" already installed on android.
Fetching plugin "https://github.com/danwilson/google-analytics-plugin.git" via git clone
Using shallow clone
Repository "https://github.com/danwilson/google-analytics-plugin.git" checked out to git ref "master" at "930179f".
Installing "cordova-plugin-google-analytics" at "1.8.6" for android
Subproject Path: CordovaLib

--------------------------------------------------------------------------------
PROJECT PROPERTIES
--------------------------------------------------------------------------------
# This file is automatically generated by Android Tools.
# Do not modify this file -- YOUR CHANGES WILL BE ERASED!
#
# This file must be checked in Version Control Systems.
#
# To customize properties used by the Ant build system edit
# "ant.properties", and override values to adapt the script to your
# project structure.
#
# To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home):
#proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt
# Project target.
target=android-26
android.library.reference.1=CordovaLib
cordova.gradle.include.1=phonegap-plugin-push/app-push.gradle
cordova.system.library.1=com.android.support:support-v13:24+
cordova.system.library.2=com.google.android.gms:play-services-gcm:15+
cordova.system.library.3=me.leolin:ShortcutBadger:1.1.14@aar
cordova.gradle.include.2=card.io.cordova.mobilesdk/app-build.gradle
cordova.gradle.include.3=com.paypal.cordova.mobilesdk/app-build.gradle
cordova.system.library.4=com.google.android.gms:play-services-location:+
cordova.system.library.5=com.razorpay:checkout:1.4.6
cordova.system.library.6=com.android.support:support-v4:26.+
cordova.system.library.7=com.android.support:appcompat-v7:26.+
cordova.system.library.8=com.google.android.gms:play-services-maps:+
cordova.system.library.9=com.google.android.gms:play-services-location:+
cordova.system.library.10=com.google.android.gms:play-services-auth:+
cordova.system.library.11=com.google.android.gms:play-services-identity:+
cordova.system.library.12=com.android.support:support-v4:24.1.1+
cordova.system.library.13=com.google.android.gms:play-services-analytics:11.0.1
--------------------------------------------------------------------------------
COMPILE OUTPUT
--------------------------------------------------------------------------------
:wrapper

BUILD SUCCESSFUL in 2s
1 actionable task: 1 executed
Subproject Path: CordovaLib
The Task.leftShift(Closure) method has been deprecated and is scheduled to be removed in Gradle 5.0. Please use Task.doLast(Action) instead.
	at build_6zs1rqdyri0iyh3vasj3kp8a0.run(/build.gradle:144)
The JavaCompile.setDependencyCacheDir() method has been deprecated and is scheduled to be removed in Gradle 4.0.
Incremental java compilation is an incubating feature.
The TaskInputs.source(Object) method has been deprecated and is scheduled to be removed in Gradle 4.0. Please use TaskInputs.file(Object).skipWhenEmpty() instead.
:preBuild UP-TO-DATE
:preDebugBuild UP-TO-DATE
:checkDebugManifest
:preReleaseBuild UP-TO-DATE
:CordovaLib:preBuild UP-TO-DATE
:CordovaLib:preDebugBuild UP-TO-DATE
:CordovaLib:checkDebugManifest
:CordovaLib:prepareDebugDependencies
:CordovaLib:compileDebugAidl
:CordovaLib:compileDebugNdk UP-TO-DATE
:CordovaLib:compileLint
:CordovaLib:copyDebugLint UP-TO-DATE
:CordovaLib:mergeDebugShaders
:CordovaLib:compileDebugShaders
:CordovaLib:generateDebugAssets
:CordovaLib:mergeDebugAssets
:CordovaLib:mergeDebugProguardFiles
:CordovaLib:packageDebugRenderscript UP-TO-DATE
:CordovaLib:compileDebugRenderscript
:CordovaLib:generateDebugResValues
:CordovaLib:generateDebugResources
:CordovaLib:packageDebugResources
:CordovaLib:processDebugManifest
:CordovaLib:generateDebugBuildConfig
:CordovaLib:processDebugResources
:CordovaLib:generateDebugSources
:CordovaLib:incrementalDebugJavaCompilationSafeguard
:CordovaLib:compileDebugJavaWithJavac
:CordovaLib:compileDebugJavaWithJavac - is not incremental (e.g. outputs have changed, no previous execution, etc.).
Note: Some input files use or override a deprecated API.
Note: Recompile with -Xlint:deprecation for details.
:CordovaLib:processDebugJavaRes UP-TO-DATE
:CordovaLib:transformResourcesWithMergeJavaResForDebug
:CordovaLib:transformClassesAndResourcesWithSyncLibJarsForDebug
:CordovaLib:mergeDebugJniLibFolders
:CordovaLib:transformNative_libsWithMergeJniLibsForDebug
:CordovaLib:transformNative_libsWithSyncJniLibsForDebug
:CordovaLib:bundleDebug
:CordovaLib:preReleaseBuild UP-TO-DATE
:CordovaLib:checkReleaseManifest
:CordovaLib:prepareReleaseDependencies
:CordovaLib:compileReleaseAidl
:CordovaLib:compileReleaseNdk UP-TO-DATE
:CordovaLib:copyReleaseLint UP-TO-DATE
:CordovaLib:mergeReleaseShaders
:CordovaLib:compileReleaseShaders
:CordovaLib:generateReleaseAssets
:CordovaLib:mergeReleaseAssets
:CordovaLib:mergeReleaseProguardFiles
:CordovaLib:packageReleaseRenderscript UP-TO-DATE
:CordovaLib:compileReleaseRenderscript
:CordovaLib:generateReleaseResValues
:CordovaLib:generateReleaseResources
:CordovaLib:packageReleaseResources
:CordovaLib:processReleaseManifest
:CordovaLib:generateReleaseBuildConfig
:CordovaLib:processReleaseResources
:CordovaLib:generateReleaseSources
:CordovaLib:incrementalReleaseJavaCompilationSafeguard
:CordovaLib:compileReleaseJavaWithJavac
:CordovaLib:compileReleaseJavaWithJavac - is not incremental (e.g. outputs have changed, no previous execution, etc.).
Note: Some input files use or override a deprecated API.
Note: Recompile with -Xlint:deprecation for details.
:CordovaLib:processReleaseJavaRes UP-TO-DATE
:CordovaLib:transformResourcesWithMergeJavaResForRelease
:CordovaLib:transformClassesAndResourcesWithSyncLibJarsForRelease
:CordovaLib:mergeReleaseJniLibFolders
:CordovaLib:transformNative_libsWithMergeJniLibsForRelease
:CordovaLib:transformNative_libsWithSyncJniLibsForRelease
:CordovaLib:bundleRelease
:prepareAndroidArchLifecycleRuntime100Library
:prepareComAndroidSupportAnimatedVectorDrawable2610Library
:prepareComAndroidSupportAppcompatV72610Library
:prepareComAndroidSupportSupportCompat2610Library
:prepareComAndroidSupportSupportCoreUi2610Library
:prepareComAndroidSupportSupportCoreUtils2610Library
:prepareComAndroidSupportSupportFragment2610Library
:prepareComAndroidSupportSupportMediaCompat2610Library
:prepareComAndroidSupportSupportV132421Library
:prepareComAndroidSupportSupportV42610Library
:prepareComAndroidSupportSupportVectorDrawable2610Library
:prepareComGoogleAndroidGmsPlayServicesAnalytics1101Library
:prepareComGoogleAndroidGmsPlayServicesAnalyticsImpl1101Library
:prepareComGoogleAndroidGmsPlayServicesAuth1601Library
:prepareComGoogleAndroidGmsPlayServicesAuthApiPhone1600Library
:prepareComGoogleAndroidGmsPlayServicesAuthBase1600Library
:prepareComGoogleAndroidGmsPlayServicesBase1601Library
:prepareComGoogleAndroidGmsPlayServicesBasement1601Library
:prepareComGoogleAndroidGmsPlayServicesGcm1501Library
:prepareComGoogleAndroidGmsPlayServicesIdentity1600Library
:prepareComGoogleAndroidGmsPlayServicesIid1501Library
:prepareComGoogleAndroidGmsPlayServicesLocation1600Library
:prepareComGoogleAndroidGmsPlayServicesMaps1600Library
:prepareComGoogleAndroidGmsPlayServicesPlacesPlacereport1600Library
:prepareComGoogleAndroidGmsPlayServicesStats1501Library
:prepareComGoogleAndroidGmsPlayServicesTagmanagerV4Impl1101Library
:prepareComGoogleAndroidGmsPlayServicesTasks1601Library
:prepareComPaypalSdkPaypalAndroidSdk2153Library
:prepareComRazorpayCheckout146Library
:prepareIoCardAndroidSdk540Library
:prepareMeLeolinShortcutBadger1114Library
:prepareOrgApacheCordovaCordovaLib630DebugLibrary
:prepareDebugDependencies
:compileDebugAidl
:compileDebugRenderscript
:generateDebugBuildConfig
:generateDebugResValues
:generateDebugResources
:mergeDebugResources
:processDebugManifest
:processDebugResources
:generateDebugSources
:incrementalDebugJavaCompilationSafeguard
:compileDebugJavaWithJavac
:compileDebugJavaWithJavac - is not incremental (e.g. outputs have changed, no previous execution, etc.).
/src/plugin/google/maps/GoogleMaps.java:717: error: cannot find symbol
    String msg = GooglePlayServicesUtil.getOpenSourceSoftwareLicenseInfo(activity);
                                       ^
  symbol:   method getOpenSourceSoftwareLicenseInfo(Activity)
  location: class GooglePlayServicesUtil
/src/plugin/google/maps/AsyncLicenseInfo.java:22: error: cannot find symbol
    String licenseInfo = GooglePlayServicesUtil.getOpenSourceSoftwareLicenseInfo(mActivity);
                                               ^
  symbol:   method getOpenSourceSoftwareLicenseInfo(Activity)
  location: class GooglePlayServicesUtil
Note: Some input files use or override a deprecated API.
Note: Recompile with -Xlint:deprecation for details.
Note: Some input files use unchecked or unsafe operations.
Note: Recompile with -Xlint:unchecked for details.
2 errors
:compileDebugJavaWithJavac FAILED

FAILURE: Build failed with an exception.

* What went wrong:
Execution failed for task ':compileDebugJavaWithJavac'.
> Compilation failed; see the compiler error output for details.

* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.

BUILD FAILED

Total time: 9.677 secs
Error: /gradlew: Command failed with exit code 1 Error output:
Note: Some input files use or override a deprecated API.
Note: Recompile with -Xlint:deprecation for details.
Note: Some input files use or override a deprecated API.
Note: Recompile with -Xlint:deprecation for details.
/src/plugin/google/maps/GoogleMaps.java:717: error: cannot find symbol
    String msg = GooglePlayServicesUtil.getOpenSourceSoftwareLicenseInfo(activity);
                                       ^
  symbol:   method getOpenSourceSoftwareLicenseInfo(Activity)
  location: class GooglePlayServicesUtil
/src/plugin/google/maps/AsyncLicenseInfo.java:22: error: cannot find symbol
    String licenseInfo = GooglePlayServicesUtil.getOpenSourceSoftwareLicenseInfo(mActivity);
                                               ^
  symbol:   method getOpenSourceSoftwareLicenseInfo(Activity)
  location: class GooglePlayServicesUtil
Note: Some input files use or override a deprecated API.
Note: Recompile with -Xlint:deprecation for details.
Note: Some input files use unchecked or unsafe operations.
Note: Recompile with -Xlint:unchecked for details.
2 errors

FAILURE: Build failed with an exception.

* What went wrong:
Execution failed for task ':compileDebugJavaWithJavac'.
> Compilation failed; see the compiler error output for details.

* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.
    at ChildProcess.whenDone (/cordova/node_modules/cordova-common/src/superspawn.js:169:23)
    at emitTwo (events.js:106:13)
    at ChildProcess.emit (events.js:191:7)
    at maybeClose (internal/child_process.js:877:16)
    at Process.ChildProcess._handle.onexit (internal/child_process.js:226:5)

XML XSLT中的月份名称

<!-- Variable -->
<xsl:variable name="monthnames">January   February  March     April     May       June      July      August    September October   November  December  </xsl:variable>

<!-- Template -->
<xsl:template match="@date" mode="month-name">
	<xsl:variable name="index" select="number(substring(., 6, 2)) - 1" />
	<xsl:value-of select="normalize-space(substring($monthnames, $index * 10, 10))" />
</xsl:template>

<!-- Executioner -->
<xsl:apply-templates select="@date" mode="month-name" />

XML XHTML Document Skeleton Snippet

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
	"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
	<head>
		<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
		<title>${1:${TM_FILENAME/((.+)\..*)?/(?2:$2:Page Title)/}}</title>
		<link rel="${3:stylesheet}" href="${4:/css/master.css}" type="text/css" media="${5:screen}" title="${6:no title}" charset="${7:utf-8}"${TM_XHTML} />
	</head>
	<body>
		$0
	</body>
</html>

XML URLRewriter.NET正则表达式

<rewriter>

      <!-- EXCEPT FOR PREDEFINED DIRECTORIES -->

      <rewrite url="~/(.+)/((js|img|css|op|mtn)/(.+))" to="~/$2" processing="stop"></rewrite>

      <!-- EXCEPT FOR COMMONLY IMPORTED FILES -->

      <rewrite url="^(/.+(\.gif|\.png|\.jpg|\.ico|\.pdf|\.css|\.swf|\.zip|\.js)(\?.+)?)$" to="$1" processing="stop" />

      <!-- ALL URL WILL BE REWRITTEN  -->

      <rewrite url="~/(.+)/(.+).aspx(\?(.+))?$" to="~/$2.aspx?site=$1&$4" processing="stop"></rewrite> 

</rewriter>