You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by ja...@apache.org on 2020/06/29 15:21:56 UTC

svn commit: r1879336 [2/2] - in /cordova/site/public: ./ announcements/2020/06/23/ announcements/2020/06/29/ blog/ docs/en/dev/config_ref/ docs/en/dev/guide/platforms/android/ docs/en/dev/reference/cordova-plugin-splashscreen/ docs/en/dev/reference/cor...

Modified: cordova/site/public/feed.xml
URL: http://svn.apache.org/viewvc/cordova/site/public/feed.xml?rev=1879336&r1=1879335&r2=1879336&view=diff
==============================================================================
--- cordova/site/public/feed.xml (original)
+++ cordova/site/public/feed.xml Mon Jun 29 15:21:55 2020
@@ -6,11 +6,171 @@
 </description>
     <link>https://cordova.apache.org/</link>
     <atom:link href="https://cordova.apache.org/feed.xml" rel="self" type="application/rss+xml"/>
-    <pubDate>Wed, 24 Jun 2020 16:44:39 +0000</pubDate>
-    <lastBuildDate>Wed, 24 Jun 2020 16:44:39 +0000</lastBuildDate>
+    <pubDate>Mon, 29 Jun 2020 15:01:59 +0000</pubDate>
+    <lastBuildDate>Mon, 29 Jun 2020 15:01:59 +0000</lastBuildDate>
     <generator>Jekyll v2.5.3</generator>
     
       <item>
+        <title>Cordova Android 9.0.0 Released!</title>
+        <description>&lt;p&gt;We are happy to announce that we have just released &lt;code&gt;Cordova Android 9.0.0&lt;/code&gt;!  This is one of Cordova&amp;#39;s supported platforms for building Android mobile applications.&lt;/p&gt;
+
+&lt;ul&gt;
+&lt;li&gt;&lt;a href=&quot;https://www.npmjs.com/package/cordova-android&quot;&gt;cordova-android@9.0.0&lt;/a&gt;&lt;/li&gt;
+&lt;/ul&gt;
+
+&lt;p&gt;&lt;strong&gt;To upgrade:&lt;/strong&gt;&lt;/p&gt;
+&lt;div class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-bash&quot; data-lang=&quot;bash&quot;&gt;cordova platform remove android
+cordova platform add android@9.0.0
+&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;
+&lt;h2&gt;Release Highlights&lt;/h2&gt;
+
+&lt;ul&gt;
+&lt;li&gt;&lt;p&gt;&lt;strong&gt;Added Kotlin Support&lt;/strong&gt;&lt;/p&gt;
+
+&lt;p&gt;Kotlin is one of the newest statically typed languages for developing Android apps. It is designed to work fully with the existing language, Java.&lt;/p&gt;
+
+&lt;p&gt;By default, Cordova has Kotlin disabled but it can be enabled with &lt;a href=&quot;https://cordova.apache.org/docs/en/latest/config_ref/index.html#preference&quot;&gt;the &lt;code&gt;GradlePluginKotlinEnabled&lt;/code&gt; preference&lt;/a&gt; in &lt;code&gt;config.xml&lt;/code&gt;.&lt;/p&gt;
+
+&lt;p&gt;Additionally, Kotlin’s coding style and version are configurable. By default, Cordova sets the coding style as &lt;code&gt;official&lt;/code&gt; and uses version &lt;code&gt;1.3.50&lt;/code&gt;.&lt;/p&gt;
+
+&lt;p&gt;Below is an example &lt;code&gt;config.xml&lt;/code&gt; for enabling and configuring Kotlin.&lt;/p&gt;
+&lt;div class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-xml&quot; data-lang=&quot;xml&quot;&gt;&lt;span class=&quot;nt&quot;&gt;&amp;lt;preference&lt;/span&gt; &lt;span class=&quot;na&quot;&gt;name=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&quot;GradlePluginKotlinEnabled&quot;&lt;/span&gt; &lt;span class=&quot;na&quot;&gt;value=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&quot;true&quot;&lt;/span&gt; &lt;span class=&quot;nt&quot;&gt;/&amp;gt;&lt;/span&gt;
+&lt;span class=&quot;nt&quot;&gt;&amp;lt;preference&lt;/span&gt; &lt;span class=&quot;na&quot;&gt;name=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&quot;GradlePluginKotlinCodeStyle&quot;&lt;/span&gt; &lt;span class=&quot;na&quot;&gt;value=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&quot;official&quot;&lt;/span&gt; &lt;span class=&quot;nt&quot;&gt;/&amp;gt;&lt;/span&gt;
+&lt;span class=&quot;nt&quot;&gt;&amp;lt;preference&lt;/span&gt; &lt;span class=&quot;na&quot;&gt;name=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&quot;GradlePluginKotlinVersion&quot;&lt;/span&gt; &lt;span class=&quot;na&quot;&gt;value=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&quot;1.3.50&quot;&lt;/span&gt; &lt;span class=&quot;nt&quot;&gt;/&amp;gt;&lt;/span&gt;
+&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;
+&lt;p&gt;For plugin developers, it is recommended to ensure that the Kotlin files are placed into the platforms &lt;code&gt;src/main/kotlin&lt;/code&gt; directory.&lt;/p&gt;&lt;/li&gt;
+&lt;li&gt;&lt;p&gt;&lt;strong&gt;Added AndroidX Support&lt;/strong&gt;&lt;/p&gt;
+
+&lt;p&gt;AndroidX is the new and improved namespace for the Android Support Libraries. The original support libraries are no longer maintained.&lt;/p&gt;
+
+&lt;p&gt;It is recommended to use AndroidX so that your app is running the latest support libraries but, by default, Cordova has AndroidX support disabled for compatibility with existing plugins.&lt;/p&gt;
+
+&lt;p&gt;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.&lt;/p&gt;
+
+&lt;p&gt;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.&lt;/p&gt;
+
+&lt;p&gt;You can enable this feature by setting &lt;a href=&quot;https://cordova.apache.org/docs/en/latest/config_ref/index.html#preference&quot;&gt;the &lt;code&gt;AndroidXEnabled&lt;/code&gt; preference&lt;/a&gt; to &lt;code&gt;true&lt;/code&gt; in &lt;code&gt;config.xml&lt;/code&gt;.&lt;/p&gt;
+&lt;div class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-xml&quot; data-lang=&quot;xml&quot;&gt;&lt;span class=&quot;nt&quot;&gt;&amp;lt;preference&lt;/span&gt; &lt;span class=&quot;na&quot;&gt;name=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&quot;AndroidXEnabled&quot;&lt;/span&gt; &lt;span class=&quot;na&quot;&gt;value=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&quot;true&quot;&lt;/span&gt; &lt;span class=&quot;nt&quot;&gt;/&amp;gt;&lt;/span&gt;
+&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;
+&lt;p&gt;If you were previously using the &lt;a href=&quot;https://www.npmjs.com/package/cordova-plugin-androidx&quot;&gt;cordova-plugin-androidx&lt;/a&gt; plugin to enable AndroidX support, this plugin is no longer needed with this preference flag.&lt;/p&gt;
+
+&lt;p&gt;The &lt;a href=&quot;https://www.npmjs.com/package/cordova-plugin-androidx-adapter&quot;&gt;cordova-plugin-androidx-adapter&lt;/a&gt; plugin can be used to migrate the legacy references to the new AndroidX references.&lt;/p&gt;&lt;/li&gt;
+&lt;li&gt;&lt;p&gt;&lt;strong&gt;Added Google Services Support&lt;/strong&gt;&lt;/p&gt;
+
+&lt;p&gt;To use Google APIs or Firebase services, the Gradle plugin &lt;a href=&quot;https://developers.google.com/android/guides/google-services-plugin&quot;&gt;Google Services&lt;/a&gt; is required to be enabled when building your Android application.&lt;/p&gt;
+
+&lt;p&gt;For plugin developers, this can be enabled by setting to the app&amp;#39;s &lt;code&gt;config.xml&lt;/code&gt; the &lt;code&gt;GradlePluginGoogleServicesEnabled&lt;/code&gt; &lt;code&gt;preference&lt;/code&gt; flag. From the &lt;code&gt;plugin.xml&lt;/code&gt; file, you can do this by adding the following lines:&lt;/p&gt;
+&lt;div class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-xml&quot; data-lang=&quot;xml&quot;&gt;&lt;span class=&quot;nt&quot;&gt;&amp;lt;config-file&lt;/span&gt; &lt;span class=&quot;na&quot;&gt;target=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&quot;config.xml&quot;&lt;/span&gt; &lt;span class=&quot;na&quot;&gt;parent=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&quot;/*&quot;&lt;/span&gt;&lt;span class=&quot;nt&quot;&gt;&amp;gt;&lt;/span&gt;
+    &lt;span class=&quot;nt&quot;&gt;&amp;lt;preference&lt;/span&gt; &lt;span class=&quot;na&quot;&gt;name=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&quot;GradlePluginGoogleServicesEnabled&quot;&lt;/span&gt; &lt;span class=&quot;na&quot;&gt;value=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&quot;true&quot;&lt;/span&gt; &lt;span class=&quot;nt&quot;&gt;/&amp;gt;&lt;/span&gt;
+    &lt;span class=&quot;nt&quot;&gt;&amp;lt;preference&lt;/span&gt; &lt;span class=&quot;na&quot;&gt;name=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&quot;GradlePluginGoogleServicesVersion&quot;&lt;/span&gt; &lt;span class=&quot;na&quot;&gt;value=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&quot;4.2.0&quot;&lt;/span&gt; &lt;span class=&quot;nt&quot;&gt;/&amp;gt;&lt;/span&gt;
+&lt;span class=&quot;nt&quot;&gt;&amp;lt;/config-file&amp;gt;&lt;/span&gt;
+&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/li&gt;
+&lt;li&gt;&lt;p&gt;&lt;strong&gt;Android Version Support Update&lt;/strong&gt;&lt;/p&gt;
+
+&lt;ul&gt;
+&lt;li&gt;The default target SDK version is set to 29.&lt;/li&gt;
+&lt;li&gt;The minimum SDK version is set to 22.&lt;/li&gt;
+&lt;li&gt;The minimum supported Android version is 5.1.&lt;/li&gt;
+&lt;/ul&gt;
+
+&lt;p&gt;&lt;strong&gt;NOTE:&lt;/strong&gt; because Cordova has increased the minimum SDK version to 22, we &lt;strong&gt;no longer support or test&lt;/strong&gt; with Android 5.0 or lower.&lt;/p&gt;&lt;/li&gt;
+&lt;li&gt;&lt;p&gt;&lt;strong&gt;Gradle and Gradle Plugin Version Support Update&lt;/strong&gt;&lt;/p&gt;
+
+&lt;ul&gt;
+&lt;li&gt;Cordova has increased the default Gradle version to 6.5.&lt;/li&gt;
+&lt;li&gt;Cordova has increased the Gradle Plugin to version 4.0.0&lt;/li&gt;
+&lt;/ul&gt;&lt;/li&gt;
+&lt;/ul&gt;
+
+&lt;p&gt;Please report any issues you find at &lt;a href=&quot;http://issues.cordova.io/&quot;&gt;issues.cordova.io&lt;/a&gt;!&lt;/p&gt;
+
+&lt;!--more--&gt;
+
+&lt;h2&gt;Full Changelog&lt;/h2&gt;
+
+&lt;ul&gt;
+&lt;li&gt;&lt;a href=&quot;https://github.com/apache/cordova-android/pull/1005&quot;&gt;GH-1005&lt;/a&gt; chore: set AndroidX off by default&lt;/li&gt;
+&lt;li&gt;&lt;a href=&quot;https://github.com/apache/cordova-android/pull/971&quot;&gt;GH-971&lt;/a&gt; fix: Accept multiple mime types on file input&lt;/li&gt;
+&lt;li&gt;&lt;a href=&quot;https://github.com/apache/cordova-android/pull/1001&quot;&gt;GH-1001&lt;/a&gt; fix: support both adaptive and standard icons at the same time&lt;/li&gt;
+&lt;li&gt;&lt;a href=&quot;https://github.com/apache/cordova-android/pull/985&quot;&gt;GH-985&lt;/a&gt; fix: Plugin install fails when preview sdk is installed&lt;/li&gt;
+&lt;li&gt;&lt;a href=&quot;https://github.com/apache/cordova-android/pull/994&quot;&gt;GH-994&lt;/a&gt; chore: cleanup yaml files&lt;/li&gt;
+&lt;li&gt;&lt;a href=&quot;https://github.com/apache/cordova-android/pull/999&quot;&gt;GH-999&lt;/a&gt; chore: remove trailing spaces from Java sources&lt;/li&gt;
+&lt;li&gt;&lt;a href=&quot;https://github.com/apache/cordova-android/pull/992&quot;&gt;GH-992&lt;/a&gt; chore: update some dependencies&lt;/li&gt;
+&lt;li&gt;&lt;a href=&quot;https://github.com/apache/cordova-android/pull/998&quot;&gt;GH-998&lt;/a&gt; chore: remove trailing spaces from framework build files&lt;/li&gt;
+&lt;li&gt;&lt;a href=&quot;https://github.com/apache/cordova-android/pull/997&quot;&gt;GH-997&lt;/a&gt; chore: remove trailing spaces from project template&lt;/li&gt;
+&lt;li&gt;&lt;a href=&quot;https://github.com/apache/cordova-android/pull/996&quot;&gt;GH-996&lt;/a&gt; chore: remove trailing spaces from bat files&lt;/li&gt;
+&lt;li&gt;&lt;a href=&quot;https://github.com/apache/cordova-android/pull/995&quot;&gt;GH-995&lt;/a&gt; remove trailing spaces from markdown files&lt;/li&gt;
+&lt;li&gt;&lt;a href=&quot;https://github.com/apache/cordova-android/pull/993&quot;&gt;GH-993&lt;/a&gt; chore: update &lt;code&gt;devDependencies&lt;/code&gt;&lt;/li&gt;
+&lt;li&gt;&lt;a href=&quot;https://github.com/apache/cordova-android/pull/987&quot;&gt;GH-987&lt;/a&gt; breaking: reduce combined response cutoff to 16 MB&lt;/li&gt;
+&lt;li&gt;&lt;a href=&quot;https://github.com/apache/cordova-android/pull/988&quot;&gt;GH-988&lt;/a&gt; major: Gradle 6.5 &amp;amp; &lt;strong&gt;Android&lt;/strong&gt; Gradle plugin 4.0.0 updates&lt;/li&gt;
+&lt;li&gt;&lt;a href=&quot;https://github.com/apache/cordova-android/pull/990&quot;&gt;GH-990&lt;/a&gt; chore: remove trailing spaces from &lt;code&gt;app/build.gradle&lt;/code&gt;&lt;/li&gt;
+&lt;li&gt;&lt;a href=&quot;https://github.com/apache/cordova-android/pull/989&quot;&gt;GH-989&lt;/a&gt; breaking: remove &lt;code&gt;legacy/build.gradle&lt;/code&gt; from template&lt;/li&gt;
+&lt;li&gt;&lt;a href=&quot;https://github.com/apache/cordova-android/pull/978&quot;&gt;GH-978&lt;/a&gt; fix: &lt;code&gt;wait_for_boot&lt;/code&gt; waiting forever&lt;/li&gt;
+&lt;li&gt;&lt;a href=&quot;https://github.com/apache/cordova-android/pull/965&quot;&gt;GH-965&lt;/a&gt; fix: Increased &lt;code&gt;detectArchitecture()&lt;/code&gt; timeout&lt;/li&gt;
+&lt;li&gt;&lt;a href=&quot;https://github.com/apache/cordova-android/pull/962&quot;&gt;GH-962&lt;/a&gt; breaking: Bump &lt;strong&gt;Android&lt;/strong&gt; gradle plugin to 3.6.0&lt;/li&gt;
+&lt;li&gt;&lt;a href=&quot;https://github.com/apache/cordova-android/pull/948&quot;&gt;GH-948&lt;/a&gt; feature: JVM Args flag&lt;/li&gt;
+&lt;li&gt;&lt;a href=&quot;https://github.com/apache/cordova-android/pull/951&quot;&gt;GH-951&lt;/a&gt; fix: &lt;code&gt;ANDROID_SDK_ROOT&lt;/code&gt; variable&lt;/li&gt;
+&lt;li&gt;&lt;a href=&quot;https://github.com/apache/cordova-android/pull/959&quot;&gt;GH-959&lt;/a&gt; test: synced AndroidX gradle versions to the same version as the &lt;strong&gt;Android&lt;/strong&gt; test&lt;/li&gt;
+&lt;li&gt;&lt;a href=&quot;https://github.com/apache/cordova-android/pull/960&quot;&gt;GH-960&lt;/a&gt; feat: &lt;code&gt;com.android.tools.build:gradle:3.5.3&lt;/code&gt;&lt;/li&gt;
+&lt;li&gt;&lt;a href=&quot;https://github.com/apache/cordova-android/pull/956&quot;&gt;GH-956&lt;/a&gt; chore(npm): add &lt;code&gt;package-lock.json&lt;/code&gt;&lt;/li&gt;
+&lt;li&gt;&lt;a href=&quot;https://github.com/apache/cordova-android/pull/958&quot;&gt;GH-958&lt;/a&gt; chore(npm): add ignore list&lt;/li&gt;
+&lt;li&gt;&lt;a href=&quot;https://github.com/apache/cordova-android/pull/957&quot;&gt;GH-957&lt;/a&gt; chore: various cleanup&lt;/li&gt;
+&lt;li&gt;&lt;a href=&quot;https://github.com/apache/cordova-android/pull/955&quot;&gt;GH-955&lt;/a&gt; chore(eslint): bump package &amp;amp; apply eslint fix&lt;/li&gt;
+&lt;li&gt;&lt;a href=&quot;https://github.com/apache/cordova-android/pull/954&quot;&gt;GH-954&lt;/a&gt; breaking(npm): bump packages&lt;/li&gt;
+&lt;li&gt;&lt;a href=&quot;https://github.com/apache/cordova-android/pull/953&quot;&gt;GH-953&lt;/a&gt; chore(npm): use short notation in &lt;code&gt;package.json&lt;/code&gt;&lt;/li&gt;
+&lt;li&gt;&lt;a href=&quot;https://github.com/apache/cordova-android/pull/823&quot;&gt;GH-823&lt;/a&gt; fix: prevent exit fullscreen mode from closing application&lt;/li&gt;
+&lt;li&gt;&lt;a href=&quot;https://github.com/apache/cordova-android/pull/950&quot;&gt;GH-950&lt;/a&gt; fix: removed redundent logcat print&lt;/li&gt;
+&lt;li&gt;&lt;a href=&quot;https://github.com/apache/cordova-android/pull/915&quot;&gt;GH-915&lt;/a&gt; breaking: bump minSdkVersion to 22 and drop pre-Lollipop specific code&lt;/li&gt;
+&lt;li&gt;&lt;a href=&quot;https://github.com/apache/cordova-android/pull/941&quot;&gt;GH-941&lt;/a&gt; fix: GH-873 App bundle builds to obey command-line arguments&lt;/li&gt;
+&lt;li&gt;&lt;a href=&quot;https://github.com/apache/cordova-android/pull/940&quot;&gt;GH-940&lt;/a&gt; ci: drop travis &amp;amp; move codecov to gh-actions&lt;/li&gt;
+&lt;li&gt;&lt;a href=&quot;https://github.com/apache/cordova-android/pull/929&quot;&gt;GH-929&lt;/a&gt; chore: updated &lt;code&gt;README&lt;/code&gt; to reflect what &lt;strong&gt;Android&lt;/strong&gt; requires more accurately, which is Java 8, not anything less, not anything greater. Java 1.8.x is required.&lt;/li&gt;
+&lt;li&gt;&lt;a href=&quot;https://github.com/apache/cordova-android/pull/937&quot;&gt;GH-937&lt;/a&gt; fix: GH-935 replaced &lt;code&gt;compare-func&lt;/code&gt; with native sort method&lt;/li&gt;
+&lt;li&gt;&lt;a href=&quot;https://github.com/apache/cordova-android/pull/939&quot;&gt;GH-939&lt;/a&gt; fix: test failure with shebang interpreter in &lt;code&gt;rewired&lt;/code&gt; files&lt;/li&gt;
+&lt;li&gt;&lt;a href=&quot;https://github.com/apache/cordova-android/pull/911&quot;&gt;GH-911&lt;/a&gt; refactor: use es6 class&lt;/li&gt;
+&lt;li&gt;&lt;a href=&quot;https://github.com/apache/cordova-android/pull/910&quot;&gt;GH-910&lt;/a&gt; refactor (eslint): use &lt;code&gt;cordova-eslint&lt;/code&gt;&lt;/li&gt;
+&lt;li&gt;&lt;a href=&quot;https://github.com/apache/cordova-android/pull/909&quot;&gt;GH-909&lt;/a&gt; chore: remove appveyor residual&lt;/li&gt;
+&lt;li&gt;&lt;a href=&quot;https://github.com/apache/cordova-android/pull/895&quot;&gt;GH-895&lt;/a&gt; feat: add github actions&lt;/li&gt;
+&lt;li&gt;&lt;a href=&quot;https://github.com/apache/cordova-android/pull/842&quot;&gt;GH-842&lt;/a&gt; refactor: remove &lt;code&gt;shelljs&lt;/code&gt; dependency&lt;/li&gt;
+&lt;li&gt;&lt;a href=&quot;https://github.com/apache/cordova-android/pull/896&quot;&gt;GH-896&lt;/a&gt; feat: add Kotlin support&lt;/li&gt;
+&lt;li&gt;&lt;a href=&quot;https://github.com/apache/cordova-android/pull/901&quot;&gt;GH-901&lt;/a&gt; feat: add AndroidX support&lt;/li&gt;
+&lt;li&gt;&lt;a href=&quot;https://github.com/apache/cordova-android/pull/849&quot;&gt;GH-849&lt;/a&gt; fix: cordova requirements consider the &lt;code&gt;android-targetSdkVersion&lt;/code&gt;&lt;/li&gt;
+&lt;li&gt;&lt;a href=&quot;https://github.com/apache/cordova-android/pull/904&quot;&gt;GH-904&lt;/a&gt; fix (adb): shell to return expected stdout&lt;/li&gt;
+&lt;li&gt;&lt;a href=&quot;https://github.com/apache/cordova-android/pull/792&quot;&gt;GH-792&lt;/a&gt; feat: upgrade &lt;code&gt;gradle&lt;/code&gt; to 6.1 &amp;amp; gradle build tools to 3.5.3&lt;/li&gt;
+&lt;li&gt;&lt;a href=&quot;https://github.com/apache/cordova-android/pull/902&quot;&gt;GH-902&lt;/a&gt; chore: remove &lt;code&gt;.project&lt;/code&gt; file &amp;amp; add &lt;code&gt;.settings&lt;/code&gt; to &lt;code&gt;gitignore&lt;/code&gt;&lt;/li&gt;
+&lt;li&gt;&lt;a href=&quot;https://github.com/apache/cordova-android/pull/900&quot;&gt;GH-900&lt;/a&gt; refactor: simplify &lt;code&gt;doFindLatestInstalledBuildTools&lt;/code&gt;&lt;/li&gt;
+&lt;li&gt;&lt;a href=&quot;https://github.com/apache/cordova-android/pull/751&quot;&gt;GH-751&lt;/a&gt; feat: use Java package name for loading &lt;code&gt;BuildConfig&lt;/code&gt;&lt;/li&gt;
+&lt;li&gt;&lt;a href=&quot;https://github.com/apache/cordova-android/pull/898&quot;&gt;GH-898&lt;/a&gt; chore: rename gradle plugin google services &lt;code&gt;preference&lt;/code&gt; options&lt;/li&gt;
+&lt;li&gt;&lt;a href=&quot;https://github.com/apache/cordova-android/pull/893&quot;&gt;GH-893&lt;/a&gt; feat: add Google Services support&lt;/li&gt;
+&lt;li&gt;&lt;a href=&quot;https://github.com/apache/cordova-android/pull/709&quot;&gt;GH-709&lt;/a&gt; feat: add &lt;code&gt;version-compare&lt;/code&gt; library to compare &lt;code&gt;build-tools&lt;/code&gt; versions properly.&lt;/li&gt;
+&lt;li&gt;&lt;a href=&quot;https://github.com/apache/cordova-android/pull/831&quot;&gt;GH-831&lt;/a&gt; chore: ignore auto-generated eclipse buildship files&lt;/li&gt;
+&lt;li&gt;&lt;a href=&quot;https://github.com/apache/cordova-android/pull/848&quot;&gt;GH-848&lt;/a&gt; breaking: increased default target sdk to 29&lt;/li&gt;
+&lt;li&gt;&lt;a href=&quot;https://github.com/apache/cordova-android/pull/859&quot;&gt;GH-859&lt;/a&gt; breaking: removed unnecessary project name restriction&lt;/li&gt;
+&lt;li&gt;&lt;a href=&quot;https://github.com/apache/cordova-android/pull/833&quot;&gt;GH-833&lt;/a&gt; chore: drop &lt;code&gt;q&lt;/code&gt; module&lt;/li&gt;
+&lt;li&gt;&lt;a href=&quot;https://github.com/apache/cordova-android/pull/862&quot;&gt;GH-862&lt;/a&gt; chore: replace &lt;code&gt;superspawn&lt;/code&gt; &amp;amp; &lt;code&gt;child_process&lt;/code&gt; with &lt;code&gt;execa&lt;/code&gt;&lt;/li&gt;
+&lt;li&gt;&lt;a href=&quot;https://github.com/apache/cordova-android/pull/860&quot;&gt;GH-860&lt;/a&gt; feat: don&amp;#39;t filter gradle&amp;#39;s stderr anymore&lt;/li&gt;
+&lt;li&gt;&lt;a href=&quot;https://github.com/apache/cordova-android/pull/832&quot;&gt;GH-832&lt;/a&gt; chore: drop node 6 and 8 support&lt;/li&gt;
+&lt;li&gt;&lt;a href=&quot;https://github.com/apache/cordova-android/pull/890&quot;&gt;GH-890&lt;/a&gt; chore: bump version to 9.0.0-dev&lt;/li&gt;
+&lt;li&gt;&lt;a href=&quot;https://github.com/apache/cordova-android/pull/697&quot;&gt;GH-697&lt;/a&gt; chore: optimization code&lt;/li&gt;
+&lt;li&gt;&lt;a href=&quot;https://github.com/apache/cordova-android/pull/863&quot;&gt;GH-863&lt;/a&gt; chore: removed comment that serves no purpose&lt;/li&gt;
+&lt;li&gt;&lt;a href=&quot;https://github.com/apache/cordova-android/pull/861&quot;&gt;GH-861&lt;/a&gt; chore: update &lt;code&gt;jasmine&lt;/code&gt; to 3.5.0&lt;/li&gt;
+&lt;li&gt;&lt;a href=&quot;https://github.com/apache/cordova-android/pull/858&quot;&gt;GH-858&lt;/a&gt; chore: modernize our one E2E test&lt;/li&gt;
+&lt;li&gt;&lt;a href=&quot;https://github.com/apache/cordova-android/pull/854&quot;&gt;GH-854&lt;/a&gt; chore: ensure to lint as many files as possible&lt;/li&gt;
+&lt;/ul&gt;
+</description>
+        <pubDate>Mon, 29 Jun 2020 00:00:00 +0000</pubDate>
+        <link>https://cordova.apache.org/announcements/2020/06/29/cordova-android-9.0.0.html</link>
+        <guid isPermaLink="true">https://cordova.apache.org/announcements/2020/06/29/cordova-android-9.0.0.html</guid>
+        
+        <category>news</category>
+        
+        <category>releases</category>
+        
+        
+        <category>announcements</category>
+        
+      </item>
+    
+      <item>
         <title>Cordova iOS 6.1.0 Released!</title>
         <description>&lt;p&gt;We are happy to announce that we have just released &lt;code&gt;Cordova iOS 6.1.0&lt;/code&gt;! This is Cordova&amp;#39;s official platform for building iOS mobile applications.&lt;/p&gt;
 
@@ -937,44 +1097,6 @@ Apple has also deprecated the &lt;code&g
         
         
         <category>announcements</category>
-        
-      </item>
-    
-      <item>
-        <title>Cordova Windows 7.0.1 Released!</title>
-        <description>&lt;p&gt;We are happy to announce that we have just released Cordova Windows version &lt;code&gt;7.0.1&lt;/code&gt;!  This is one of Cordova&amp;#39;s supported platforms for building Windows applications.&lt;/p&gt;
-
-&lt;ul&gt;
-&lt;li&gt;&lt;a href=&quot;https://www.npmjs.com/package/cordova-windows&quot;&gt;cordova-windows@7.0.1&lt;/a&gt;&lt;/li&gt;
-&lt;/ul&gt;
-
-&lt;h2&gt;Release Highlights&lt;/h2&gt;
-
-&lt;p&gt;&lt;strong&gt;To upgrade:&lt;/strong&gt;&lt;/p&gt;
-&lt;div class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-&quot; data-lang=&quot;&quot;&gt;cordova platform remove windows
-cordova platform add windows@7.0.1
-&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;
-&lt;p&gt;Patch release to resolve issue with path to &lt;code&gt;winjs&lt;/code&gt; dependency (&lt;a href=&quot;https://github.com/apache/cordova-windows/pull/331&quot;&gt;#331&lt;/a&gt;)&lt;/p&gt;
-
-&lt;!--more--&gt;
-
-&lt;h1&gt;Changes include:&lt;/h1&gt;
-
-&lt;ul&gt;
-&lt;li&gt;Support latest Visual Studio 2017 (15.9.x) (&lt;a href=&quot;https://github.com/apache/cordova-windows/pull/329&quot;&gt;#329&lt;/a&gt;)&lt;/li&gt;
-&lt;li&gt;Fix path to &lt;code&gt;winjs&lt;/code&gt; dependency (&lt;a href=&quot;https://github.com/apache/cordova-windows/pull/331&quot;&gt;#331&lt;/a&gt;)&lt;/li&gt;
-&lt;/ul&gt;
-</description>
-        <pubDate>Mon, 06 Jan 2020 00:00:00 +0000</pubDate>
-        <link>https://cordova.apache.org/announcements/2020/01/06/cordova-windows-release-7.0.1.html</link>
-        <guid isPermaLink="true">https://cordova.apache.org/announcements/2020/01/06/cordova-windows-release-7.0.1.html</guid>
-        
-        <category>news</category>
-        
-        <category>releases</category>
-        
-        
-        <category>announcements</category>
         
       </item>
     

Modified: cordova/site/public/sitemap.xml
URL: http://svn.apache.org/viewvc/cordova/site/public/sitemap.xml?rev=1879336&r1=1879335&r2=1879336&view=diff
==============================================================================
--- cordova/site/public/sitemap.xml (original)
+++ cordova/site/public/sitemap.xml Mon Jun 29 15:21:55 2020
@@ -4,6 +4,11 @@
 <!-- posts -->
 
 <url>
+    <loc>https://cordova.apache.org/announcements/2020/06/29/cordova-android-9.0.0.html</loc>
+</url>
+
+
+<url>
     <loc>https://cordova.apache.org/announcements/2020/06/23/cordova-ios-6.1.0.html</loc>
 </url>
 

Modified: cordova/site/public/static/js/index.js
URL: http://svn.apache.org/viewvc/cordova/site/public/static/js/index.js?rev=1879336&r1=1879335&r2=1879336&view=diff
==============================================================================
--- cordova/site/public/static/js/index.js (original)
+++ cordova/site/public/static/js/index.js Mon Jun 29 15:21:55 2020
@@ -77,6 +77,7 @@ function checkNotification() {
     var dates = [];
     if (lastVisit != "") {
         
+        dates.push('Mon, 29 Jun 2020 00:00:00 +0000');
         dates.push('Tue, 23 Jun 2020 00:00:00 +0000');
         dates.push('Mon, 15 Jun 2020 00:00:00 +0000');
         dates.push('Sat, 13 Jun 2020 00:00:00 +0000');



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