You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by ag...@apache.org on 2014/08/20 17:34:31 UTC

[1/2] docs commit: CB-3571 Update the docs for the splash screens

Repository: cordova-docs
Updated Branches:
  refs/heads/master c785a25fd -> 3756e8164


CB-3571 Update the docs for the splash screens

github: close #220


Project: http://git-wip-us.apache.org/repos/asf/cordova-docs/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-docs/commit/8214048a
Tree: http://git-wip-us.apache.org/repos/asf/cordova-docs/tree/8214048a
Diff: http://git-wip-us.apache.org/repos/asf/cordova-docs/diff/8214048a

Branch: refs/heads/master
Commit: 8214048a6974c83cbd7625a97fce76a1b70ea4fc
Parents: c785a25
Author: ignisvulpis <ax...@nennker.de>
Authored: Mon Jul 14 13:18:44 2014 +0200
Committer: Andrew Grieve <ag...@chromium.org>
Committed: Wed Aug 20 11:33:32 2014 -0400

----------------------------------------------------------------------
 docs/en/edge/config_ref/images.md | 177 ++++++++++++---------------------
 1 file changed, 64 insertions(+), 113 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/8214048a/docs/en/edge/config_ref/images.md
----------------------------------------------------------------------
diff --git a/docs/en/edge/config_ref/images.md b/docs/en/edge/config_ref/images.md
index acd8913..1d46195 100644
--- a/docs/en/edge/config_ref/images.md
+++ b/docs/en/edge/config_ref/images.md
@@ -135,118 +135,69 @@ Windows8
 
 ## Configuring Splash Screens in the CLI
 
-Use the Splashscreen API to enable display of an app's introductory
-splash screen on many platforms.  When working in the CLI, splash
-screen source files are located within the project's `www/res/screens`
-subdirectory.
-
-Android specifies both portrait- and landscape-oriented splash screen
-images for low, medium, high, and extra-high resolutions:
-
-        android/screen-hdpi-landscape.png
-        android/screen-hdpi-portrait.png
-        android/screen-ldpi-landscape.png
-        android/screen-ldpi-portrait.png
-        android/screen-mdpi-landscape.png
-        android/screen-mdpi-portrait.png
-        android/screen-xhdpi-landscape.png
-        android/screen-xhdpi-portrait.png
-
-The iOS platform specifies variants for iPhone/iPod and iPad, with
-variants for retina displays and different orientations. The _568h_
-file applies to the iPhone 5's taller screen:
-
-        ios/screen-ipad-landscape-2x.png
-        ios/screen-ipad-landscape.png
-        ios/screen-ipad-portrait-2x.png
-        ios/screen-ipad-portrait.png
-        ios/screen-iphone-landscape-2x.png
-        ios/screen-iphone-landscape.png
-        ios/screen-iphone-portrait-2x.png
-        ios/screen-iphone-portrait.png
-        ios/screen-iphone-portrait-568h-2x.png
-
-Windows Phone specifies a single splash screen image:
-
-        windows-phone/screen-portrait.jpg
-
-The following sections detail how to set up splash screens when
-working with SDKs and related command-line tools described in Platform
-Guides.
-
-Don't forget to install the SplashScreen plugin before trying to use the
-`navigator.splashscreen.hide()` or `navigator.splashscreen.show()` methods.
-
-## Splash Screens for the Android Platform
-
-Place [9-patch image](https://developer.android.com/tools/help/draw9patch.html)
-files in the Android project's `platforms/android/res/drawable*` directories.
-
-The size for each should be:
-
-- xlarge (xhdpi): at least 960 &times; 720
-- large (hdpi): at least 640 &times; 480
-- medium (mdpi): at least 470 &times; 320
-- small (ldpi): at least 426 &times; 320
-
-When creating a new Android project, the default splash screen images
-provided in the Cordova sample app should already be present in the
-`platforms/android/res/drawable*` directories. Feel free to replace these
-with your own images.
-When providing your own splash screen images, you do not need to 
-provide the same permutation of 8 as the Cordova default ones
-here.  More or less optimization can be used. 
-The `drawable` directory names must follow the Android conventions for
-supporting
-[screen sizes](http://developer.android.com/guide/practices/screens_support.html) and
-[alternate resources](http://developer.android.com/guide/topics/resources/providing-resources.html#AlternativeResources).
-
-In the top-level `config.xml` file (not the one in `platforms`), add the
-following preferences:
-
-    <preference name="SplashScreen" value="screen" />
+In the top-level `config.xml` file (not the one in `platforms`), add configuration elements like those specified here.
+
+# Example configuration 
+
+Please notice that the value of the "src" attribute is relative to the project directory and not to the www directory.
+You can name the source image whatever you like. The internal name in the app are determined by Cordova.
+
+    <platform name="android">
+        <!-- you can use any density that exists in the Android project -->
+        <splash src="res/screen/android/splash-land-hdpi.png" density="land-hdpi"/>
+        <splash src="res/screen/android/splash-land-ldpi.png" density="land-ldpi"/>
+        <splash src="res/screen/android/splash-land-mdpi.png" density="land-mdpi"/>
+        <splash src="res/screen/android/splash-land-xhdpi.png" density="land-xhdpi"/>
+
+        <splash src="res/screen/android/splash-port-hdpi.png" density="port-hdpi"/>
+        <splash src="res/screen/android/splash-port-ldpi.png" density="port-ldpi"/>
+        <splash src="res/screen/android/splash-port-mdpi.png" density="port-mdpi"/>
+        <splash src="res/screen/android/splash-port-xhdpi.png" density="port-xhdpi"/>
+    </platform>
+
+    <platform name="ios">
+        <!-- images are determined by width and height. The following are supported -->
+        <splash src="res/screen/ios/Default~iphone.png" width="320" height="480"/>
+        <splash src="res/screen/ios/Default@2x~iphone.png" width="640" height="960"/>
+        <splash src="res/screen/ios/Default-Portrait~ipad.png" width="768" height="1024"/>
+        <splash src="res/screen/ios/Default-Portrait@2x~ipad.png" width="1536" height="2048"/>
+        <splash src="res/screen/ios/Default-Landscape~ipad.png" width="1024" height="768"/>
+        <splash src="res/screen/ios/Default-Landscape@2x~ipad.png" width="2048" height="1536"/>
+        <splash src="res/screen/ios/Default-568h@2x~iphone.png" width="640" height="1136"/>
+    </platform>
+
+    <platform name="wp8">
+        <!-- images are determined by width and height. The following are supported -->
+        <splash src="res/screen/wp8/SplashScreenImage.jpg" width="768" height="1280"/>
+    </platform>
+
+    <platform name="windows8">
+        <!-- images are determined by width and height. The following are supported -->
+        <splash src="res/screen/windows8/splashscreen.png" width="620" height="300"/>
+    </platform>
+
+    <platform name="blackberry10">
+        <!-- Add a rim:splash element for each resolution and locale you wish -->
+        <!-- http://developer.blackberry.com/html5/documentation/rim_splash_element.html -->
+        <rim:splash src="res/screen/windows8/splashscreen.png"/>
+    </platform>
+
+
     <preference name="SplashScreenDelay" value="10000" />
 
-The first line sets the image to display as the splash screen. This is the
-file name of the png in the `drawable*` directories, minus the `.png`
-extension. The default value for SplashScreen is `screen` (for the file
-`platforms/android/res/drawable*/screen.png`), so if you
-name the image anything other than `screen.png` in the `drawable*` directories,
-you need to add/modify this line.
-
-The second line sets the default delay of how long the splashscreen appears in
-milliseconds. This should be the worst-case expected start time.
-The default value for SplashScreenDelay is 3000 ms.
-
-Finally, as a best practice, the splash screen should be present only as long
-as necessary. When your app has started and the webview has loaded, your app
-should hide the splash screen so that your main view is visible as soon as it
-is ready. Because the app start time will vary quite a bit due to a number of
-factors such as CPU speed and network, it is recommended that your app
-explicitly invoke `navigator.splashscreen.hide()` in the JavaScript
-method that responds to the `deviceready` event. Otherwise the splash screen
-will be visible for the SplashScreenDelay value that you configured above,
-which is likely longer than necessary.
-This event-driven approach is highly recommended versus having the splash
-screen visible for always a fixed duration.
-
-## Splash Screens for the iOS Platform
-
-Copy splash screen images into the iOS project's `Resources/splash`
-directory. Only add those images for the devices you want to support,
-such as iPad or iPhone. The size of each image should be:
-
-- Default-568h@2x~iphone.png (640x1136 pixels)
-- Default-Landscape@2x~ipad.png (2048x1496 pixels)
-- Default-Landscape~ipad.png (1024x748 pixels)
-- Default-Portrait@2x~ipad.png (1536x2008 pixels)
-- Default-Portrait~ipad.png (768x1004 pixels)
-- Default@2x~iphone.png (640x960 pixels)
-- Default~iphone.png (320x480 pixels)
-
-## Splash Screens for the BlackBerry 10 Platform
-
-Add a rim:splash element to config.xml for each resolution and locale you wish
-to support:
-
-<http://developer.blackberry.com/html5/documentation/rim_splash_element.html>
+# Supported platforms 
+
+As of now (Cordova 3.5.0 July 2014) the following platforms support splash screens.
+
+    android
+    ios
+    wp8
+    windows8
+    blackberry10
+
+# Splashscreen Plugin
+
+  Apache Cordova also offers special splash screen plugin which could be used to programmatically display and hide a splash screen during application launch
+  https://github.com/apache/cordova-plugin-splashscreen
+
+


[2/2] docs commit: guide/platforms/android/plugin.md: capitalize @Override

Posted by ag...@apache.org.
guide/platforms/android/plugin.md: capitalize @Override


Project: http://git-wip-us.apache.org/repos/asf/cordova-docs/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-docs/commit/3756e816
Tree: http://git-wip-us.apache.org/repos/asf/cordova-docs/tree/3756e816
Diff: http://git-wip-us.apache.org/repos/asf/cordova-docs/diff/3756e816

Branch: refs/heads/master
Commit: 3756e8164b07e658d011b00472ec737cc45086fc
Parents: 8214048
Author: Joseph Frazier <jo...@onsip.com>
Authored: Tue Aug 19 21:49:24 2014 -0400
Committer: Andrew Grieve <ag...@chromium.org>
Committed: Wed Aug 20 11:33:33 2014 -0400

----------------------------------------------------------------------
 docs/de/3.4.0/guide/platforms/android/plugin.md | 2 +-
 docs/de/3.5.0/guide/platforms/android/plugin.md | 2 +-
 docs/de/edge/guide/platforms/android/plugin.md  | 2 +-
 docs/en/3.1.0/guide/platforms/android/plugin.md | 2 +-
 docs/en/3.4.0/guide/platforms/android/plugin.md | 2 +-
 docs/en/3.5.0/guide/platforms/android/plugin.md | 2 +-
 docs/en/edge/guide/platforms/android/plugin.md  | 2 +-
 docs/es/3.4.0/guide/platforms/android/plugin.md | 2 +-
 docs/es/3.5.0/guide/platforms/android/plugin.md | 2 +-
 docs/es/edge/guide/platforms/android/plugin.md  | 2 +-
 docs/fr/3.4.0/guide/platforms/android/plugin.md | 2 +-
 docs/fr/3.5.0/guide/platforms/android/plugin.md | 2 +-
 docs/fr/edge/guide/platforms/android/plugin.md  | 2 +-
 docs/it/3.4.0/guide/platforms/android/plugin.md | 2 +-
 docs/it/3.5.0/guide/platforms/android/plugin.md | 2 +-
 docs/it/edge/guide/platforms/android/plugin.md  | 2 +-
 docs/ja/3.4.0/guide/platforms/android/plugin.md | 2 +-
 docs/ja/3.5.0/guide/platforms/android/plugin.md | 2 +-
 docs/ja/edge/guide/platforms/android/plugin.md  | 2 +-
 docs/ko/3.4.0/guide/platforms/android/plugin.md | 2 +-
 docs/ko/3.5.0/guide/platforms/android/plugin.md | 2 +-
 docs/ko/edge/guide/platforms/android/plugin.md  | 2 +-
 docs/pl/edge/guide/platforms/android/plugin.md  | 2 +-
 docs/ru/3.4.0/guide/platforms/android/plugin.md | 2 +-
 docs/ru/3.5.0/guide/platforms/android/plugin.md | 2 +-
 docs/ru/edge/guide/platforms/android/plugin.md  | 2 +-
 docs/sl/3.4.0/guide/platforms/android/plugin.md | 2 +-
 docs/sl/3.5.0/guide/platforms/android/plugin.md | 2 +-
 docs/sl/edge/guide/platforms/android/plugin.md  | 2 +-
 docs/zh/3.4.0/guide/platforms/android/plugin.md | 2 +-
 docs/zh/3.5.0/guide/platforms/android/plugin.md | 2 +-
 docs/zh/edge/guide/platforms/android/plugin.md  | 2 +-
 32 files changed, 32 insertions(+), 32 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/3756e816/docs/de/3.4.0/guide/platforms/android/plugin.md
----------------------------------------------------------------------
diff --git a/docs/de/3.4.0/guide/platforms/android/plugin.md b/docs/de/3.4.0/guide/platforms/android/plugin.md
index fcc40ac..27c22b6 100644
--- a/docs/de/3.4.0/guide/platforms/android/plugin.md
+++ b/docs/de/3.4.0/guide/platforms/android/plugin.md
@@ -52,7 +52,7 @@ Wird eine Instanz eines Plugin-Objekts erstellt, für das Leben eines jeden `Web
 
 Plugins sollten verwenden die `initialize` -Methode für ihre Start-up-Logik.
 
-    @override
+    @Override
     public void initialize(CordovaInterface cordova, CordovaWebView webView) {
         super.initialize(cordova, webView);
         // your init code here

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/3756e816/docs/de/3.5.0/guide/platforms/android/plugin.md
----------------------------------------------------------------------
diff --git a/docs/de/3.5.0/guide/platforms/android/plugin.md b/docs/de/3.5.0/guide/platforms/android/plugin.md
index fcc40ac..27c22b6 100644
--- a/docs/de/3.5.0/guide/platforms/android/plugin.md
+++ b/docs/de/3.5.0/guide/platforms/android/plugin.md
@@ -52,7 +52,7 @@ Wird eine Instanz eines Plugin-Objekts erstellt, für das Leben eines jeden `Web
 
 Plugins sollten verwenden die `initialize` -Methode für ihre Start-up-Logik.
 
-    @override
+    @Override
     public void initialize(CordovaInterface cordova, CordovaWebView webView) {
         super.initialize(cordova, webView);
         // your init code here

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/3756e816/docs/de/edge/guide/platforms/android/plugin.md
----------------------------------------------------------------------
diff --git a/docs/de/edge/guide/platforms/android/plugin.md b/docs/de/edge/guide/platforms/android/plugin.md
index 142e89a..9680921 100644
--- a/docs/de/edge/guide/platforms/android/plugin.md
+++ b/docs/de/edge/guide/platforms/android/plugin.md
@@ -51,7 +51,7 @@ Wird eine Instanz eines Plugin-Objekts erstellt, für das Leben eines jeden `Web
 
 Plugins sollten verwenden die `initialize` -Methode für ihre Start-up-Logik.
 
-    @override
+    @Override
     public void initialize(CordovaInterface cordova, CordovaWebView webView) {
         super.initialize(cordova, webView);
         // your init code here

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/3756e816/docs/en/3.1.0/guide/platforms/android/plugin.md
----------------------------------------------------------------------
diff --git a/docs/en/3.1.0/guide/platforms/android/plugin.md b/docs/en/3.1.0/guide/platforms/android/plugin.md
index 92ee868..94d92d9 100644
--- a/docs/en/3.1.0/guide/platforms/android/plugin.md
+++ b/docs/en/3.1.0/guide/platforms/android/plugin.md
@@ -70,7 +70,7 @@ referenced by a call from JavaScript, unless `<param>` with an `onload`
 
 Plugins should use the `initialize` method for their start-up logic.
 
-    @override
+    @Override
     public void initialize(CordovaInterface cordova, CordovaWebView webView) {
       super.initialize(cordova, webView);
       // your init code here

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/3756e816/docs/en/3.4.0/guide/platforms/android/plugin.md
----------------------------------------------------------------------
diff --git a/docs/en/3.4.0/guide/platforms/android/plugin.md b/docs/en/3.4.0/guide/platforms/android/plugin.md
index 55e0fe1..fb83ab8 100644
--- a/docs/en/3.4.0/guide/platforms/android/plugin.md
+++ b/docs/en/3.4.0/guide/platforms/android/plugin.md
@@ -78,7 +78,7 @@ referenced by a call from JavaScript, unless `<param>` with an `onload`
 
 Plugins should use the `initialize` method for their start-up logic.
 
-    @override
+    @Override
     public void initialize(CordovaInterface cordova, CordovaWebView webView) {
         super.initialize(cordova, webView);
         // your init code here

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/3756e816/docs/en/3.5.0/guide/platforms/android/plugin.md
----------------------------------------------------------------------
diff --git a/docs/en/3.5.0/guide/platforms/android/plugin.md b/docs/en/3.5.0/guide/platforms/android/plugin.md
index 55e0fe1..fb83ab8 100644
--- a/docs/en/3.5.0/guide/platforms/android/plugin.md
+++ b/docs/en/3.5.0/guide/platforms/android/plugin.md
@@ -78,7 +78,7 @@ referenced by a call from JavaScript, unless `<param>` with an `onload`
 
 Plugins should use the `initialize` method for their start-up logic.
 
-    @override
+    @Override
     public void initialize(CordovaInterface cordova, CordovaWebView webView) {
         super.initialize(cordova, webView);
         // your init code here

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/3756e816/docs/en/edge/guide/platforms/android/plugin.md
----------------------------------------------------------------------
diff --git a/docs/en/edge/guide/platforms/android/plugin.md b/docs/en/edge/guide/platforms/android/plugin.md
index 55e0fe1..fb83ab8 100644
--- a/docs/en/edge/guide/platforms/android/plugin.md
+++ b/docs/en/edge/guide/platforms/android/plugin.md
@@ -78,7 +78,7 @@ referenced by a call from JavaScript, unless `<param>` with an `onload`
 
 Plugins should use the `initialize` method for their start-up logic.
 
-    @override
+    @Override
     public void initialize(CordovaInterface cordova, CordovaWebView webView) {
         super.initialize(cordova, webView);
         // your init code here

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/3756e816/docs/es/3.4.0/guide/platforms/android/plugin.md
----------------------------------------------------------------------
diff --git a/docs/es/3.4.0/guide/platforms/android/plugin.md b/docs/es/3.4.0/guide/platforms/android/plugin.md
index 3084a6e..38f6951 100644
--- a/docs/es/3.4.0/guide/platforms/android/plugin.md
+++ b/docs/es/3.4.0/guide/platforms/android/plugin.md
@@ -52,7 +52,7 @@ Para la vida de cada uno se crea una instancia de un objeto plugin `WebView` . P
 
 Plugins deberían utilizar el `initialize` método para su lógica puesta en marcha.
 
-    @override
+    @Override
     public void initialize(CordovaInterface cordova, CordovaWebView webView) {
         super.initialize(cordova, webView);
         // your init code here

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/3756e816/docs/es/3.5.0/guide/platforms/android/plugin.md
----------------------------------------------------------------------
diff --git a/docs/es/3.5.0/guide/platforms/android/plugin.md b/docs/es/3.5.0/guide/platforms/android/plugin.md
index 864d0ca..dbe435f 100644
--- a/docs/es/3.5.0/guide/platforms/android/plugin.md
+++ b/docs/es/3.5.0/guide/platforms/android/plugin.md
@@ -52,7 +52,7 @@ Para la vida de cada uno se crea una instancia de un objeto plugin `WebView` . P
 
 Plugins deberían utilizar el `initialize` método para su lógica puesta en marcha.
 
-    @override
+    @Override
     public void initialize(CordovaInterface cordova, CordovaWebView webView) {
         super.initialize(cordova, webView);
         // your init code here

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/3756e816/docs/es/edge/guide/platforms/android/plugin.md
----------------------------------------------------------------------
diff --git a/docs/es/edge/guide/platforms/android/plugin.md b/docs/es/edge/guide/platforms/android/plugin.md
index 940e6af..83b2aa9 100644
--- a/docs/es/edge/guide/platforms/android/plugin.md
+++ b/docs/es/edge/guide/platforms/android/plugin.md
@@ -51,7 +51,7 @@ Para la vida de cada uno se crea una instancia de un objeto plugin `WebView` . P
 
 Plugins deberían utilizar el `initialize` método para su lógica puesta en marcha.
 
-    @override
+    @Override
     public void initialize(CordovaInterface cordova, CordovaWebView webView) {
         super.initialize(cordova, webView);
         // your init code here

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/3756e816/docs/fr/3.4.0/guide/platforms/android/plugin.md
----------------------------------------------------------------------
diff --git a/docs/fr/3.4.0/guide/platforms/android/plugin.md b/docs/fr/3.4.0/guide/platforms/android/plugin.md
index 60228f3..e6d85c1 100644
--- a/docs/fr/3.4.0/guide/platforms/android/plugin.md
+++ b/docs/fr/3.4.0/guide/platforms/android/plugin.md
@@ -52,7 +52,7 @@ Une seule instance d'un objet plugin est créée pour la vie de chaque `WebView`
 
 Plugins devraient utiliser la `initialize` méthode pour leur logique de démarrage.
 
-    @override
+    @Override
     public void initialize(CordovaInterface cordova, CordovaWebView webView) {
         super.initialize(cordova, webView);
         // your init code here

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/3756e816/docs/fr/3.5.0/guide/platforms/android/plugin.md
----------------------------------------------------------------------
diff --git a/docs/fr/3.5.0/guide/platforms/android/plugin.md b/docs/fr/3.5.0/guide/platforms/android/plugin.md
index af46d1f..d3095ce 100644
--- a/docs/fr/3.5.0/guide/platforms/android/plugin.md
+++ b/docs/fr/3.5.0/guide/platforms/android/plugin.md
@@ -52,7 +52,7 @@ Une seule instance d'un objet plugin est créée pour la vie de chaque `WebView`
 
 Plugins devraient utiliser la `initialize` méthode pour leur logique de démarrage.
 
-    @override
+    @Override
     public void initialize(CordovaInterface cordova, CordovaWebView webView) {
         super.initialize(cordova, webView);
         // your init code here

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/3756e816/docs/fr/edge/guide/platforms/android/plugin.md
----------------------------------------------------------------------
diff --git a/docs/fr/edge/guide/platforms/android/plugin.md b/docs/fr/edge/guide/platforms/android/plugin.md
index 83ffa01..2de14f5 100644
--- a/docs/fr/edge/guide/platforms/android/plugin.md
+++ b/docs/fr/edge/guide/platforms/android/plugin.md
@@ -51,7 +51,7 @@ Une seule instance d'un objet plugin est créée pour la vie de chaque `WebView`
 
 Plugins devraient utiliser la `initialize` méthode pour leur logique de démarrage.
 
-    @override
+    @Override
     public void initialize(CordovaInterface cordova, CordovaWebView webView) {
         super.initialize(cordova, webView);
         // your init code here

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/3756e816/docs/it/3.4.0/guide/platforms/android/plugin.md
----------------------------------------------------------------------
diff --git a/docs/it/3.4.0/guide/platforms/android/plugin.md b/docs/it/3.4.0/guide/platforms/android/plugin.md
index ec8bd6d..3f9119f 100644
--- a/docs/it/3.4.0/guide/platforms/android/plugin.md
+++ b/docs/it/3.4.0/guide/platforms/android/plugin.md
@@ -52,7 +52,7 @@ Viene creata un'istanza di un oggetto plugin per la vita di ogni `WebView` . Plu
 
 Plugin dovrebbe usare il `initialize` metodo per la loro logica di avviamento.
 
-    @override
+    @Override
     public void initialize(CordovaInterface cordova, CordovaWebView webView) {
         super.initialize(cordova, webView);
         // your init code here

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/3756e816/docs/it/3.5.0/guide/platforms/android/plugin.md
----------------------------------------------------------------------
diff --git a/docs/it/3.5.0/guide/platforms/android/plugin.md b/docs/it/3.5.0/guide/platforms/android/plugin.md
index ec8bd6d..3f9119f 100644
--- a/docs/it/3.5.0/guide/platforms/android/plugin.md
+++ b/docs/it/3.5.0/guide/platforms/android/plugin.md
@@ -52,7 +52,7 @@ Viene creata un'istanza di un oggetto plugin per la vita di ogni `WebView` . Plu
 
 Plugin dovrebbe usare il `initialize` metodo per la loro logica di avviamento.
 
-    @override
+    @Override
     public void initialize(CordovaInterface cordova, CordovaWebView webView) {
         super.initialize(cordova, webView);
         // your init code here

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/3756e816/docs/it/edge/guide/platforms/android/plugin.md
----------------------------------------------------------------------
diff --git a/docs/it/edge/guide/platforms/android/plugin.md b/docs/it/edge/guide/platforms/android/plugin.md
index 9fda007..5682875 100644
--- a/docs/it/edge/guide/platforms/android/plugin.md
+++ b/docs/it/edge/guide/platforms/android/plugin.md
@@ -51,7 +51,7 @@ Viene creata un'istanza di un oggetto plugin per la vita di ogni `WebView` . Plu
 
 Plugin dovrebbe usare il `initialize` metodo per la loro logica di avviamento.
 
-    @override
+    @Override
     public void initialize(CordovaInterface cordova, CordovaWebView webView) {
         super.initialize(cordova, webView);
         // your init code here

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/3756e816/docs/ja/3.4.0/guide/platforms/android/plugin.md
----------------------------------------------------------------------
diff --git a/docs/ja/3.4.0/guide/platforms/android/plugin.md b/docs/ja/3.4.0/guide/platforms/android/plugin.md
index e921c26..52fa91c 100644
--- a/docs/ja/3.4.0/guide/platforms/android/plugin.md
+++ b/docs/ja/3.4.0/guide/platforms/android/plugin.md
@@ -52,7 +52,7 @@ Android のプラグインはそれに取り付けられたフックを持つア
 
 プラグインを使用する必要があります、 `initialize` 、スタート アップ ロジックのメソッド。
 
-    @override
+    @Override
     public void initialize(CordovaInterface cordova, CordovaWebView webView) {
         super.initialize(cordova, webView);
         // your init code here

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/3756e816/docs/ja/3.5.0/guide/platforms/android/plugin.md
----------------------------------------------------------------------
diff --git a/docs/ja/3.5.0/guide/platforms/android/plugin.md b/docs/ja/3.5.0/guide/platforms/android/plugin.md
index e921c26..52fa91c 100644
--- a/docs/ja/3.5.0/guide/platforms/android/plugin.md
+++ b/docs/ja/3.5.0/guide/platforms/android/plugin.md
@@ -52,7 +52,7 @@ Android のプラグインはそれに取り付けられたフックを持つア
 
 プラグインを使用する必要があります、 `initialize` 、スタート アップ ロジックのメソッド。
 
-    @override
+    @Override
     public void initialize(CordovaInterface cordova, CordovaWebView webView) {
         super.initialize(cordova, webView);
         // your init code here

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/3756e816/docs/ja/edge/guide/platforms/android/plugin.md
----------------------------------------------------------------------
diff --git a/docs/ja/edge/guide/platforms/android/plugin.md b/docs/ja/edge/guide/platforms/android/plugin.md
index 0e5fdb8..ea340ee 100644
--- a/docs/ja/edge/guide/platforms/android/plugin.md
+++ b/docs/ja/edge/guide/platforms/android/plugin.md
@@ -51,7 +51,7 @@ Android のプラグインはそれに取り付けられたフックを持つア
 
 プラグインを使用する必要があります、 `initialize` 、スタート アップ ロジックのメソッド。
 
-    @override
+    @Override
     public void initialize(CordovaInterface cordova, CordovaWebView webView) {
         super.initialize(cordova, webView);
         // your init code here

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/3756e816/docs/ko/3.4.0/guide/platforms/android/plugin.md
----------------------------------------------------------------------
diff --git a/docs/ko/3.4.0/guide/platforms/android/plugin.md b/docs/ko/3.4.0/guide/platforms/android/plugin.md
index c45130f..f7cacab 100644
--- a/docs/ko/3.4.0/guide/platforms/android/plugin.md
+++ b/docs/ko/3.4.0/guide/platforms/android/plugin.md
@@ -52,7 +52,7 @@ license: Licensed to the Apache Software Foundation (ASF) under one or more cont
 
 플러그인 사용 해야 있는 `initialize` 그들의 시작 논리에 대 한 방법.
 
-    @override
+    @Override
     public void initialize(CordovaInterface cordova, CordovaWebView webView) {
         super.initialize(cordova, webView);
         // your init code here

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/3756e816/docs/ko/3.5.0/guide/platforms/android/plugin.md
----------------------------------------------------------------------
diff --git a/docs/ko/3.5.0/guide/platforms/android/plugin.md b/docs/ko/3.5.0/guide/platforms/android/plugin.md
index c45130f..f7cacab 100644
--- a/docs/ko/3.5.0/guide/platforms/android/plugin.md
+++ b/docs/ko/3.5.0/guide/platforms/android/plugin.md
@@ -52,7 +52,7 @@ license: Licensed to the Apache Software Foundation (ASF) under one or more cont
 
 플러그인 사용 해야 있는 `initialize` 그들의 시작 논리에 대 한 방법.
 
-    @override
+    @Override
     public void initialize(CordovaInterface cordova, CordovaWebView webView) {
         super.initialize(cordova, webView);
         // your init code here

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/3756e816/docs/ko/edge/guide/platforms/android/plugin.md
----------------------------------------------------------------------
diff --git a/docs/ko/edge/guide/platforms/android/plugin.md b/docs/ko/edge/guide/platforms/android/plugin.md
index fe2a97b..52fbb63 100644
--- a/docs/ko/edge/guide/platforms/android/plugin.md
+++ b/docs/ko/edge/guide/platforms/android/plugin.md
@@ -51,7 +51,7 @@ license: Licensed to the Apache Software Foundation (ASF) under one or more cont
 
 플러그인 사용 해야 있는 `initialize` 그들의 시작 논리에 대 한 방법.
 
-    @override
+    @Override
     public void initialize(CordovaInterface cordova, CordovaWebView webView) {
         super.initialize(cordova, webView);
         // your init code here

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/3756e816/docs/pl/edge/guide/platforms/android/plugin.md
----------------------------------------------------------------------
diff --git a/docs/pl/edge/guide/platforms/android/plugin.md b/docs/pl/edge/guide/platforms/android/plugin.md
index e1b22b0..1af7047 100644
--- a/docs/pl/edge/guide/platforms/android/plugin.md
+++ b/docs/pl/edge/guide/platforms/android/plugin.md
@@ -51,7 +51,7 @@ Jedno wystąpienie obiekt plugin jest tworzony dla życia każdego `WebView` . W
 
 Należy używać wtyczki `initialize` Metoda ich uruchamiania logiki.
 
-    @override
+    @Override
     public void initialize(CordovaInterface cordova, CordovaWebView webView) {
         super.initialize(cordova, webView);
         // your init code here

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/3756e816/docs/ru/3.4.0/guide/platforms/android/plugin.md
----------------------------------------------------------------------
diff --git a/docs/ru/3.4.0/guide/platforms/android/plugin.md b/docs/ru/3.4.0/guide/platforms/android/plugin.md
index 2e9eb6b..f36a6fd 100644
--- a/docs/ru/3.4.0/guide/platforms/android/plugin.md
+++ b/docs/ru/3.4.0/guide/platforms/android/plugin.md
@@ -52,7 +52,7 @@ Android плагины основаны на Cordova-андроида, кото
 
 Следует использовать плагины `initialize` метод для их запуска логики.
 
-    @override
+    @Override
     public void initialize(CordovaInterface cordova, CordovaWebView webView) {
         super.initialize(cordova, webView);
         // your init code here

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/3756e816/docs/ru/3.5.0/guide/platforms/android/plugin.md
----------------------------------------------------------------------
diff --git a/docs/ru/3.5.0/guide/platforms/android/plugin.md b/docs/ru/3.5.0/guide/platforms/android/plugin.md
index 2e9eb6b..f36a6fd 100644
--- a/docs/ru/3.5.0/guide/platforms/android/plugin.md
+++ b/docs/ru/3.5.0/guide/platforms/android/plugin.md
@@ -52,7 +52,7 @@ Android плагины основаны на Cordova-андроида, кото
 
 Следует использовать плагины `initialize` метод для их запуска логики.
 
-    @override
+    @Override
     public void initialize(CordovaInterface cordova, CordovaWebView webView) {
         super.initialize(cordova, webView);
         // your init code here

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/3756e816/docs/ru/edge/guide/platforms/android/plugin.md
----------------------------------------------------------------------
diff --git a/docs/ru/edge/guide/platforms/android/plugin.md b/docs/ru/edge/guide/platforms/android/plugin.md
index 79cee9a..170dcf8 100644
--- a/docs/ru/edge/guide/platforms/android/plugin.md
+++ b/docs/ru/edge/guide/platforms/android/plugin.md
@@ -51,7 +51,7 @@ Android плагины основаны на проекте Cordova-Android, к
 
 Следует использовать метод плагина `initialize` для логики инициализации плагина.
 
-    @override
+    @Override
     public void initialize(CordovaInterface cordova, CordovaWebView webView) {
         super.initialize(cordova, webView);
         // your init code here

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/3756e816/docs/sl/3.4.0/guide/platforms/android/plugin.md
----------------------------------------------------------------------
diff --git a/docs/sl/3.4.0/guide/platforms/android/plugin.md b/docs/sl/3.4.0/guide/platforms/android/plugin.md
index 6c43757..f05a280 100644
--- a/docs/sl/3.4.0/guide/platforms/android/plugin.md
+++ b/docs/sl/3.4.0/guide/platforms/android/plugin.md
@@ -52,7 +52,7 @@ En primerek predmeta plugin je ustvarjen za življenje vsakega `WebView` . Plugi
 
 Uporabljajte plugins je `initialize` metoda za svoje start-up logiko.
 
-    @override
+    @Override
     public void initialize(CordovaInterface cordova, CordovaWebView webView) {
         super.initialize(cordova, webView);
         // your init code here

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/3756e816/docs/sl/3.5.0/guide/platforms/android/plugin.md
----------------------------------------------------------------------
diff --git a/docs/sl/3.5.0/guide/platforms/android/plugin.md b/docs/sl/3.5.0/guide/platforms/android/plugin.md
index 6c43757..f05a280 100644
--- a/docs/sl/3.5.0/guide/platforms/android/plugin.md
+++ b/docs/sl/3.5.0/guide/platforms/android/plugin.md
@@ -52,7 +52,7 @@ En primerek predmeta plugin je ustvarjen za življenje vsakega `WebView` . Plugi
 
 Uporabljajte plugins je `initialize` metoda za svoje start-up logiko.
 
-    @override
+    @Override
     public void initialize(CordovaInterface cordova, CordovaWebView webView) {
         super.initialize(cordova, webView);
         // your init code here

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/3756e816/docs/sl/edge/guide/platforms/android/plugin.md
----------------------------------------------------------------------
diff --git a/docs/sl/edge/guide/platforms/android/plugin.md b/docs/sl/edge/guide/platforms/android/plugin.md
index 6c43757..f05a280 100644
--- a/docs/sl/edge/guide/platforms/android/plugin.md
+++ b/docs/sl/edge/guide/platforms/android/plugin.md
@@ -52,7 +52,7 @@ En primerek predmeta plugin je ustvarjen za življenje vsakega `WebView` . Plugi
 
 Uporabljajte plugins je `initialize` metoda za svoje start-up logiko.
 
-    @override
+    @Override
     public void initialize(CordovaInterface cordova, CordovaWebView webView) {
         super.initialize(cordova, webView);
         // your init code here

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/3756e816/docs/zh/3.4.0/guide/platforms/android/plugin.md
----------------------------------------------------------------------
diff --git a/docs/zh/3.4.0/guide/platforms/android/plugin.md b/docs/zh/3.4.0/guide/platforms/android/plugin.md
index a287107..50ee393 100644
--- a/docs/zh/3.4.0/guide/platforms/android/plugin.md
+++ b/docs/zh/3.4.0/guide/platforms/android/plugin.md
@@ -52,7 +52,7 @@ Android 外掛程式基於科爾多瓦-Android,Android 的 web 視圖包括與
 
 外掛程式應使用 `initialize` 方法為他們的創業邏輯。
 
-    @override
+    @Override
     public void initialize(CordovaInterface cordova, CordovaWebView webView) {
         super.initialize(cordova, webView);
         // your init code here

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/3756e816/docs/zh/3.5.0/guide/platforms/android/plugin.md
----------------------------------------------------------------------
diff --git a/docs/zh/3.5.0/guide/platforms/android/plugin.md b/docs/zh/3.5.0/guide/platforms/android/plugin.md
index a287107..50ee393 100644
--- a/docs/zh/3.5.0/guide/platforms/android/plugin.md
+++ b/docs/zh/3.5.0/guide/platforms/android/plugin.md
@@ -52,7 +52,7 @@ Android 外掛程式基於科爾多瓦-Android,Android 的 web 視圖包括與
 
 外掛程式應使用 `initialize` 方法為他們的創業邏輯。
 
-    @override
+    @Override
     public void initialize(CordovaInterface cordova, CordovaWebView webView) {
         super.initialize(cordova, webView);
         // your init code here

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/3756e816/docs/zh/edge/guide/platforms/android/plugin.md
----------------------------------------------------------------------
diff --git a/docs/zh/edge/guide/platforms/android/plugin.md b/docs/zh/edge/guide/platforms/android/plugin.md
index 0fb2341..47048d0 100644
--- a/docs/zh/edge/guide/platforms/android/plugin.md
+++ b/docs/zh/edge/guide/platforms/android/plugin.md
@@ -51,7 +51,7 @@ Android 外掛程式基於科爾多瓦-Android,Android 的 web 視圖包括與
 
 外掛程式應使用 `initialize` 方法為他們的創業邏輯。
 
-    @override
+    @Override
     public void initialize(CordovaInterface cordova, CordovaWebView webView) {
         super.initialize(cordova, webView);
         // your init code here