You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@cordova.apache.org by GitBox <gi...@apache.org> on 2020/06/29 05:45:08 UTC

[GitHub] [cordova-docs] erisu opened a new pull request #1091: Jun 2020 Cordova Android 9.0.0 Release Blog Post

erisu opened a new pull request #1091:
URL: https://github.com/apache/cordova-docs/pull/1091


   ### Motivation, Context & Description
   
   Cordova Android 9.0.0 Release Blog Post
   


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org
For additional commands, e-mail: issues-help@cordova.apache.org


[GitHub] [cordova-docs] erisu merged pull request #1091: Jun 2020 Cordova Android 9.0.0 Release Blog Post

Posted by GitBox <gi...@apache.org>.
erisu merged pull request #1091:
URL: https://github.com/apache/cordova-docs/pull/1091


   


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org
For additional commands, e-mail: issues-help@cordova.apache.org


[GitHub] [cordova-docs] breautek commented on pull request #1091: Jun 2020 Cordova Android 9.0.0 Release Blog Post

Posted by GitBox <gi...@apache.org>.
breautek commented on pull request #1091:
URL: https://github.com/apache/cordova-docs/pull/1091#issuecomment-651069363


   Noting that https://github.com/apache/cordova-docs/pull/1076 should also be merged at the same time.


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org
For additional commands, e-mail: issues-help@cordova.apache.org


[GitHub] [cordova-docs] dpogue commented on a change in pull request #1091: Jun 2020 Cordova Android 9.0.0 Release Blog Post

Posted by GitBox <gi...@apache.org>.
dpogue commented on a change in pull request #1091:
URL: https://github.com/apache/cordova-docs/pull/1091#discussion_r446787592



##########
File path: www/_posts/2020-06-29-cordova-android-9.0.0.md
##########
@@ -0,0 +1,159 @@
+---
+layout: post
+author:
+    name: Bryan Ellis
+title:  "Cordova Android 9.0.0 Released!"
+categories: announcements
+tags: news releases
+---
+
+We are happy to announce that we have just released `Cordova Android 9.0.0`!  This is one of Cordova's supported platforms for building Android mobile applications.
+
+* [cordova-android@9.0.0](https://www.npmjs.com/package/cordova-android)
+
+## Release Highlights
+
+**To upgrade:**
+
+```bash
+cordova platform remove android
+cordova platform add android@9.0.0
+```
+
+## Release Highlights
+
+* **Added Kotlin Support**
+
+Kotlin is one of the newest statically typed languages for developing Android apps. It is designed to work fully with the existing language, Java.
+
+By default, Cordova has Kotlin disabled but can be enabled with the `GradlePluginKotlinEnabled` `preference` tag.
+
+Additionally, Kotlin’s coding style and version are configurable. By default, Cordova sets the coding style as `official` and uses version `1.3.50`.
+
+Below is an example `config.xml` for enabling and configuring Kotlin.
+
+```xml
+<preference name="GradlePluginKotlinEnabled" value="true" />
+<preference name="GradlePluginKotlinCodeStyle" value="official" />
+<preference name="GradlePluginKotlinVersion" value="1.3.50" />
+```
+
+For plugin developers, it is recommended to ensure that the Kotlin files are placed into the platforms `src/main/kotlin` directory.
+
+* **Added AndroidX Support**
+
+AndroidX is the newest and improved namespace for the Android Support Libraries. The original support libraries are no longer maintained.
+
+It is recommended to use AndroidX so that your app is running the latest support libraries but, by default, Cordova has AndroidX support disabled.
+A lot of the Android supported plugins are still using the old support libraries which can not build when using the AndroidX support libraries. It is recommended to research each plugin to see if they support AndroidX before enabling this feature.
+
+It is recommended for plugin developers to start migrating to support AndroidX. App developers could also use Jetifier to automatically migrates their existing third-party libraries to use AndroidX.
+
+You can enable this feature by setting the preference flag `AndroidXEnabled` to `true`.
+
+```xml
+<preference name="AndroidXEnabled" value="true" />
+```
+
+If you were previously using the [cordova-plugin-androidx](https://www.npmjs.com/package/cordova-plugin-androidx) plugin to enable AndroidX support, this plugin is no longer needed with this preference flag.
+
+The [cordova-plugin-androidx-adapter](https://www.npmjs.com/package/cordova-plugin-androidx-adapter) plugin is still required to migrate the legacy references to the new AndroidX references.

Review comment:
       I would say something like "can be used to migrate" rather than "is still required to migrate", otherwise people might install it when it's not needed because they think it's a requirement

##########
File path: www/_posts/2020-06-29-cordova-android-9.0.0.md
##########
@@ -0,0 +1,159 @@
+---
+layout: post
+author:
+    name: Bryan Ellis
+title:  "Cordova Android 9.0.0 Released!"
+categories: announcements
+tags: news releases
+---
+
+We are happy to announce that we have just released `Cordova Android 9.0.0`!  This is one of Cordova's supported platforms for building Android mobile applications.
+
+* [cordova-android@9.0.0](https://www.npmjs.com/package/cordova-android)
+
+## Release Highlights
+
+**To upgrade:**
+
+```bash
+cordova platform remove android
+cordova platform add android@9.0.0
+```
+
+## Release Highlights
+
+* **Added Kotlin Support**
+
+Kotlin is one of the newest statically typed languages for developing Android apps. It is designed to work fully with the existing language, Java.
+
+By default, Cordova has Kotlin disabled but can be enabled with the `GradlePluginKotlinEnabled` `preference` tag.

Review comment:
       "but can be enabled" => "but it can be enabled"
   
   "`preference` tag" => "preference in config.xml" (with link to preferences docs)

##########
File path: www/_posts/2020-06-29-cordova-android-9.0.0.md
##########
@@ -0,0 +1,159 @@
+---
+layout: post
+author:
+    name: Bryan Ellis
+title:  "Cordova Android 9.0.0 Released!"
+categories: announcements
+tags: news releases
+---
+
+We are happy to announce that we have just released `Cordova Android 9.0.0`!  This is one of Cordova's supported platforms for building Android mobile applications.
+
+* [cordova-android@9.0.0](https://www.npmjs.com/package/cordova-android)
+
+## Release Highlights
+
+**To upgrade:**
+
+```bash
+cordova platform remove android
+cordova platform add android@9.0.0
+```
+
+## Release Highlights
+
+* **Added Kotlin Support**
+
+Kotlin is one of the newest statically typed languages for developing Android apps. It is designed to work fully with the existing language, Java.

Review comment:
       Indent all of the lines under each bullet point so that they get grouped as part of the list item

##########
File path: www/_posts/2020-06-29-cordova-android-9.0.0.md
##########
@@ -0,0 +1,159 @@
+---
+layout: post
+author:
+    name: Bryan Ellis
+title:  "Cordova Android 9.0.0 Released!"
+categories: announcements
+tags: news releases
+---
+
+We are happy to announce that we have just released `Cordova Android 9.0.0`!  This is one of Cordova's supported platforms for building Android mobile applications.
+
+* [cordova-android@9.0.0](https://www.npmjs.com/package/cordova-android)
+
+## Release Highlights

Review comment:
       Remove "Release Highlights" heading here, it's duplicated below (above the actual release highlights)

##########
File path: www/_posts/2020-06-29-cordova-android-9.0.0.md
##########
@@ -0,0 +1,159 @@
+---
+layout: post
+author:
+    name: Bryan Ellis
+title:  "Cordova Android 9.0.0 Released!"
+categories: announcements
+tags: news releases
+---
+
+We are happy to announce that we have just released `Cordova Android 9.0.0`!  This is one of Cordova's supported platforms for building Android mobile applications.
+
+* [cordova-android@9.0.0](https://www.npmjs.com/package/cordova-android)
+
+## Release Highlights
+
+**To upgrade:**
+
+```bash
+cordova platform remove android
+cordova platform add android@9.0.0
+```
+
+## Release Highlights
+
+* **Added Kotlin Support**
+
+Kotlin is one of the newest statically typed languages for developing Android apps. It is designed to work fully with the existing language, Java.
+
+By default, Cordova has Kotlin disabled but can be enabled with the `GradlePluginKotlinEnabled` `preference` tag.
+
+Additionally, Kotlin’s coding style and version are configurable. By default, Cordova sets the coding style as `official` and uses version `1.3.50`.
+
+Below is an example `config.xml` for enabling and configuring Kotlin.
+
+```xml
+<preference name="GradlePluginKotlinEnabled" value="true" />
+<preference name="GradlePluginKotlinCodeStyle" value="official" />
+<preference name="GradlePluginKotlinVersion" value="1.3.50" />
+```
+
+For plugin developers, it is recommended to ensure that the Kotlin files are placed into the platforms `src/main/kotlin` directory.
+
+* **Added AndroidX Support**
+
+AndroidX is the newest and improved namespace for the Android Support Libraries. The original support libraries are no longer maintained.
+
+It is recommended to use AndroidX so that your app is running the latest support libraries but, by default, Cordova has AndroidX support disabled.
+A lot of the Android supported plugins are still using the old support libraries which can not build when using the AndroidX support libraries. It is recommended to research each plugin to see if they support AndroidX before enabling this feature.
+
+It is recommended for plugin developers to start migrating to support AndroidX. App developers could also use Jetifier to automatically migrates their existing third-party libraries to use AndroidX.
+
+You can enable this feature by setting the preference flag `AndroidXEnabled` to `true`.

Review comment:
       mention config.xml, link to preferences docs

##########
File path: www/_posts/2020-06-29-cordova-android-9.0.0.md
##########
@@ -0,0 +1,159 @@
+---
+layout: post
+author:
+    name: Bryan Ellis
+title:  "Cordova Android 9.0.0 Released!"
+categories: announcements
+tags: news releases
+---
+
+We are happy to announce that we have just released `Cordova Android 9.0.0`!  This is one of Cordova's supported platforms for building Android mobile applications.
+
+* [cordova-android@9.0.0](https://www.npmjs.com/package/cordova-android)
+
+## Release Highlights
+
+**To upgrade:**
+
+```bash
+cordova platform remove android
+cordova platform add android@9.0.0
+```
+
+## Release Highlights
+
+* **Added Kotlin Support**
+
+Kotlin is one of the newest statically typed languages for developing Android apps. It is designed to work fully with the existing language, Java.
+
+By default, Cordova has Kotlin disabled but can be enabled with the `GradlePluginKotlinEnabled` `preference` tag.
+
+Additionally, Kotlin’s coding style and version are configurable. By default, Cordova sets the coding style as `official` and uses version `1.3.50`.
+
+Below is an example `config.xml` for enabling and configuring Kotlin.
+
+```xml
+<preference name="GradlePluginKotlinEnabled" value="true" />
+<preference name="GradlePluginKotlinCodeStyle" value="official" />
+<preference name="GradlePluginKotlinVersion" value="1.3.50" />
+```
+
+For plugin developers, it is recommended to ensure that the Kotlin files are placed into the platforms `src/main/kotlin` directory.
+
+* **Added AndroidX Support**
+
+AndroidX is the newest and improved namespace for the Android Support Libraries. The original support libraries are no longer maintained.

Review comment:
       "newest" => "new"

##########
File path: www/_posts/2020-06-29-cordova-android-9.0.0.md
##########
@@ -0,0 +1,159 @@
+---
+layout: post
+author:
+    name: Bryan Ellis
+title:  "Cordova Android 9.0.0 Released!"
+categories: announcements
+tags: news releases
+---
+
+We are happy to announce that we have just released `Cordova Android 9.0.0`!  This is one of Cordova's supported platforms for building Android mobile applications.
+
+* [cordova-android@9.0.0](https://www.npmjs.com/package/cordova-android)
+
+## Release Highlights
+
+**To upgrade:**
+
+```bash
+cordova platform remove android
+cordova platform add android@9.0.0
+```
+
+## Release Highlights
+
+* **Added Kotlin Support**
+
+Kotlin is one of the newest statically typed languages for developing Android apps. It is designed to work fully with the existing language, Java.
+
+By default, Cordova has Kotlin disabled but can be enabled with the `GradlePluginKotlinEnabled` `preference` tag.
+
+Additionally, Kotlin’s coding style and version are configurable. By default, Cordova sets the coding style as `official` and uses version `1.3.50`.
+
+Below is an example `config.xml` for enabling and configuring Kotlin.
+
+```xml
+<preference name="GradlePluginKotlinEnabled" value="true" />
+<preference name="GradlePluginKotlinCodeStyle" value="official" />
+<preference name="GradlePluginKotlinVersion" value="1.3.50" />
+```
+
+For plugin developers, it is recommended to ensure that the Kotlin files are placed into the platforms `src/main/kotlin` directory.
+
+* **Added AndroidX Support**
+
+AndroidX is the newest and improved namespace for the Android Support Libraries. The original support libraries are no longer maintained.
+
+It is recommended to use AndroidX so that your app is running the latest support libraries but, by default, Cordova has AndroidX support disabled.

Review comment:
       maybe?
   "Cordova has AndroidX support disabled" => "Cordova has AndroidX support disabled for compatibility with existing plugins"

##########
File path: www/_posts/2020-06-29-cordova-android-9.0.0.md
##########
@@ -0,0 +1,159 @@
+---
+layout: post
+author:
+    name: Bryan Ellis
+title:  "Cordova Android 9.0.0 Released!"
+categories: announcements
+tags: news releases
+---
+
+We are happy to announce that we have just released `Cordova Android 9.0.0`!  This is one of Cordova's supported platforms for building Android mobile applications.
+
+* [cordova-android@9.0.0](https://www.npmjs.com/package/cordova-android)
+
+## Release Highlights
+
+**To upgrade:**
+
+```bash
+cordova platform remove android
+cordova platform add android@9.0.0
+```
+
+## Release Highlights
+
+* **Added Kotlin Support**
+
+Kotlin is one of the newest statically typed languages for developing Android apps. It is designed to work fully with the existing language, Java.
+
+By default, Cordova has Kotlin disabled but can be enabled with the `GradlePluginKotlinEnabled` `preference` tag.
+
+Additionally, Kotlin’s coding style and version are configurable. By default, Cordova sets the coding style as `official` and uses version `1.3.50`.
+
+Below is an example `config.xml` for enabling and configuring Kotlin.
+
+```xml
+<preference name="GradlePluginKotlinEnabled" value="true" />
+<preference name="GradlePluginKotlinCodeStyle" value="official" />
+<preference name="GradlePluginKotlinVersion" value="1.3.50" />
+```
+
+For plugin developers, it is recommended to ensure that the Kotlin files are placed into the platforms `src/main/kotlin` directory.
+
+* **Added AndroidX Support**
+
+AndroidX is the newest and improved namespace for the Android Support Libraries. The original support libraries are no longer maintained.
+
+It is recommended to use AndroidX so that your app is running the latest support libraries but, by default, Cordova has AndroidX support disabled.
+A lot of the Android supported plugins are still using the old support libraries which can not build when using the AndroidX support libraries. It is recommended to research each plugin to see if they support AndroidX before enabling this feature.
+
+It is recommended for plugin developers to start migrating to support AndroidX. App developers could also use Jetifier to automatically migrates their existing third-party libraries to use AndroidX.
+
+You can enable this feature by setting the preference flag `AndroidXEnabled` to `true`.
+
+```xml
+<preference name="AndroidXEnabled" value="true" />
+```
+
+If you were previously using the [cordova-plugin-androidx](https://www.npmjs.com/package/cordova-plugin-androidx) plugin to enable AndroidX support, this plugin is no longer needed with this preference flag.
+
+The [cordova-plugin-androidx-adapter](https://www.npmjs.com/package/cordova-plugin-androidx-adapter) plugin is still required to migrate the legacy references to the new AndroidX references.
+
+* **Added Google Services Support**
+
+To use Google APIs or Firebase services, the Gradle plugin [Google Services](https://developers.google.com/android/guides/google-services-plugin) is required to be enabled when building your Android application.
+
+For plugin developers, this can be enabled by setting to the app's `config.xml` the `GradlePluginGoogleServicesEnabled` `preference` flag. From the `plugin.xml` file, you can do this by adding the following lines:
+
+```xml
+<config-file target="config.xml" parent="/*">
+    <preference name="GradlePluginGoogleServicesEnabled" value="true" />
+    <preference name="GradlePluginGoogleServicesVersion" value="4.2.0" />
+</config-file>
+```
+
+* **Android Version Support Update**
+
+* The default target SDK version is set to 29.
+* The minimum SDK version is set to 22.

Review comment:
       These need to be indented

##########
File path: www/_posts/2020-06-29-cordova-android-9.0.0.md
##########
@@ -0,0 +1,159 @@
+---
+layout: post
+author:
+    name: Bryan Ellis
+title:  "Cordova Android 9.0.0 Released!"
+categories: announcements
+tags: news releases
+---
+
+We are happy to announce that we have just released `Cordova Android 9.0.0`!  This is one of Cordova's supported platforms for building Android mobile applications.
+
+* [cordova-android@9.0.0](https://www.npmjs.com/package/cordova-android)
+
+## Release Highlights
+
+**To upgrade:**
+
+```bash
+cordova platform remove android
+cordova platform add android@9.0.0
+```
+
+## Release Highlights
+
+* **Added Kotlin Support**
+
+Kotlin is one of the newest statically typed languages for developing Android apps. It is designed to work fully with the existing language, Java.
+
+By default, Cordova has Kotlin disabled but can be enabled with the `GradlePluginKotlinEnabled` `preference` tag.
+
+Additionally, Kotlin’s coding style and version are configurable. By default, Cordova sets the coding style as `official` and uses version `1.3.50`.
+
+Below is an example `config.xml` for enabling and configuring Kotlin.
+
+```xml
+<preference name="GradlePluginKotlinEnabled" value="true" />
+<preference name="GradlePluginKotlinCodeStyle" value="official" />
+<preference name="GradlePluginKotlinVersion" value="1.3.50" />
+```
+
+For plugin developers, it is recommended to ensure that the Kotlin files are placed into the platforms `src/main/kotlin` directory.
+
+* **Added AndroidX Support**
+
+AndroidX is the newest and improved namespace for the Android Support Libraries. The original support libraries are no longer maintained.
+
+It is recommended to use AndroidX so that your app is running the latest support libraries but, by default, Cordova has AndroidX support disabled.
+A lot of the Android supported plugins are still using the old support libraries which can not build when using the AndroidX support libraries. It is recommended to research each plugin to see if they support AndroidX before enabling this feature.
+
+It is recommended for plugin developers to start migrating to support AndroidX. App developers could also use Jetifier to automatically migrates their existing third-party libraries to use AndroidX.
+
+You can enable this feature by setting the preference flag `AndroidXEnabled` to `true`.
+
+```xml
+<preference name="AndroidXEnabled" value="true" />
+```
+
+If you were previously using the [cordova-plugin-androidx](https://www.npmjs.com/package/cordova-plugin-androidx) plugin to enable AndroidX support, this plugin is no longer needed with this preference flag.
+
+The [cordova-plugin-androidx-adapter](https://www.npmjs.com/package/cordova-plugin-androidx-adapter) plugin is still required to migrate the legacy references to the new AndroidX references.
+
+* **Added Google Services Support**
+
+To use Google APIs or Firebase services, the Gradle plugin [Google Services](https://developers.google.com/android/guides/google-services-plugin) is required to be enabled when building your Android application.
+
+For plugin developers, this can be enabled by setting to the app's `config.xml` the `GradlePluginGoogleServicesEnabled` `preference` flag. From the `plugin.xml` file, you can do this by adding the following lines:
+
+```xml
+<config-file target="config.xml" parent="/*">
+    <preference name="GradlePluginGoogleServicesEnabled" value="true" />
+    <preference name="GradlePluginGoogleServicesVersion" value="4.2.0" />
+</config-file>
+```
+
+* **Android Version Support Update**
+
+* The default target SDK version is set to 29.
+* The minimum SDK version is set to 22.
+
+**NOTE:** because Cordova has increased the minimum SDK version to 22, we **no longer support or test** with Android 5.0 or lower.

Review comment:
       Add "The minimum supported Android version is 5.1." because I'm sure people will misunderstand and expect it to support 5.0.

##########
File path: www/_posts/2020-06-29-cordova-android-9.0.0.md
##########
@@ -0,0 +1,159 @@
+---
+layout: post
+author:
+    name: Bryan Ellis
+title:  "Cordova Android 9.0.0 Released!"
+categories: announcements
+tags: news releases
+---
+
+We are happy to announce that we have just released `Cordova Android 9.0.0`!  This is one of Cordova's supported platforms for building Android mobile applications.
+
+* [cordova-android@9.0.0](https://www.npmjs.com/package/cordova-android)
+
+## Release Highlights
+
+**To upgrade:**
+
+```bash
+cordova platform remove android
+cordova platform add android@9.0.0
+```
+
+## Release Highlights
+
+* **Added Kotlin Support**
+
+Kotlin is one of the newest statically typed languages for developing Android apps. It is designed to work fully with the existing language, Java.
+
+By default, Cordova has Kotlin disabled but can be enabled with the `GradlePluginKotlinEnabled` `preference` tag.
+
+Additionally, Kotlin’s coding style and version are configurable. By default, Cordova sets the coding style as `official` and uses version `1.3.50`.
+
+Below is an example `config.xml` for enabling and configuring Kotlin.
+
+```xml
+<preference name="GradlePluginKotlinEnabled" value="true" />
+<preference name="GradlePluginKotlinCodeStyle" value="official" />
+<preference name="GradlePluginKotlinVersion" value="1.3.50" />
+```
+
+For plugin developers, it is recommended to ensure that the Kotlin files are placed into the platforms `src/main/kotlin` directory.
+
+* **Added AndroidX Support**
+
+AndroidX is the newest and improved namespace for the Android Support Libraries. The original support libraries are no longer maintained.
+
+It is recommended to use AndroidX so that your app is running the latest support libraries but, by default, Cordova has AndroidX support disabled.
+A lot of the Android supported plugins are still using the old support libraries which can not build when using the AndroidX support libraries. It is recommended to research each plugin to see if they support AndroidX before enabling this feature.
+
+It is recommended for plugin developers to start migrating to support AndroidX. App developers could also use Jetifier to automatically migrates their existing third-party libraries to use AndroidX.
+
+You can enable this feature by setting the preference flag `AndroidXEnabled` to `true`.
+
+```xml
+<preference name="AndroidXEnabled" value="true" />
+```
+
+If you were previously using the [cordova-plugin-androidx](https://www.npmjs.com/package/cordova-plugin-androidx) plugin to enable AndroidX support, this plugin is no longer needed with this preference flag.
+
+The [cordova-plugin-androidx-adapter](https://www.npmjs.com/package/cordova-plugin-androidx-adapter) plugin is still required to migrate the legacy references to the new AndroidX references.
+
+* **Added Google Services Support**
+
+To use Google APIs or Firebase services, the Gradle plugin [Google Services](https://developers.google.com/android/guides/google-services-plugin) is required to be enabled when building your Android application.
+
+For plugin developers, this can be enabled by setting to the app's `config.xml` the `GradlePluginGoogleServicesEnabled` `preference` flag. From the `plugin.xml` file, you can do this by adding the following lines:
+
+```xml
+<config-file target="config.xml" parent="/*">
+    <preference name="GradlePluginGoogleServicesEnabled" value="true" />
+    <preference name="GradlePluginGoogleServicesVersion" value="4.2.0" />
+</config-file>
+```
+
+* **Android Version Support Update**
+
+* The default target SDK version is set to 29.
+* The minimum SDK version is set to 22.
+
+**NOTE:** because Cordova has increased the minimum SDK version to 22, we **no longer support or test** with Android 5.0 or lower.
+
+* **Gradle and Gradle Plugin Version Support Update**
+
+* Cordova has increased the default Gradle version to 6.5.

Review comment:
       These need to be indented




----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org
For additional commands, e-mail: issues-help@cordova.apache.org