android-v10.1.2 Updated version and RELEASENOTES.md for release 10.1.2

This commit is contained in:
Erisu 2022-04-11 22:01:02 +09:00
parent 51291f8985
commit f12080b7e2
No known key found for this signature in database
GPG Key ID: 2E5FF17FB26AF7F2
4 changed files with 18 additions and 4 deletions

View File

@ -20,6 +20,20 @@
-->
## Release Notes for Cordova (Android)
### 10.1.2 (Apr 11, 2022)
**Fixes:**
* [GH-1372](https://github.com/apache/cordova-android/pull/1372) fix(`AndroidManifest`): explicitly define the `activity` attribute `android:exported`
* [GH-1406](https://github.com/apache/cordova-android/pull/1406) fix: detect `JAVA_HOME` with Java 11
* [GH-1401](https://github.com/apache/cordova-android/pull/1401) fix(GH-1391): Reword minimum build tools version to make it more clear what is actually required.
* [GH-1384](https://github.com/apache/cordova-android/pull/1384) fix: escape `strings.xml` app name
**Chores:**
* [GH-1413](https://github.com/apache/cordova-android/pull/1413) chore: update `package-lock` to satisfy `npm audit`
* [GH-1348](https://github.com/apache/cordova-android/pull/1348) chore: `npmrc`
### 10.1.1 (Sep 13, 2021)
**Fixes:**

View File

@ -31,7 +31,7 @@ import android.webkit.WebChromeClient.CustomViewCallback;
* are not expected to implement it.
*/
public interface CordovaWebView {
public static final String CORDOVA_VERSION = "10.1.2-dev";
public static final String CORDOVA_VERSION = "10.1.2";
void init(CordovaInterface cordova, List<PluginEntry> pluginEntries, CordovaPreferences preferences);

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{
"name": "cordova-android",
"version": "10.1.2-dev",
"version": "10.1.2",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "cordova-android",
"version": "10.1.2-dev",
"version": "10.1.2",
"license": "Apache-2.0",
"dependencies": {
"android-versions": "^1.7.0",

View File

@ -1,6 +1,6 @@
{
"name": "cordova-android",
"version": "10.1.2-dev",
"version": "10.1.2",
"description": "cordova-android release",
"main": "lib/Api.js",
"repository": "github:apache/cordova-android",