forked from github/cordova-android
feat!: API 31 support (#1410)
* feat(breaking): API 31 support * ci: bump actions/setup-java@3 w/ java 11 * ci: set setup-java distribution to adopt Co-authored-by: Erisu <erisu@apache.org>
This commit is contained in:
parent
adcd9d9ff8
commit
5704ef9ea5
7
.github/workflows/ci.yml
vendored
7
.github/workflows/ci.yml
vendored
@ -38,10 +38,11 @@ jobs:
|
||||
with:
|
||||
node-version: ${{ matrix.node-version }}
|
||||
|
||||
- name: set up JDK 1.8
|
||||
uses: actions/setup-java@v1
|
||||
- name: set up JDK 11
|
||||
uses: actions/setup-java@v3
|
||||
with:
|
||||
java-version: 1.8
|
||||
distribution: 'adopt'
|
||||
java-version: 11
|
||||
|
||||
- name: Environment Information
|
||||
run: |
|
||||
|
@ -1,9 +1,9 @@
|
||||
{
|
||||
"MIN_SDK_VERSION": 22,
|
||||
"SDK_VERSION": 30,
|
||||
"GRADLE_VERSION": "7.1.1",
|
||||
"MIN_BUILD_TOOLS_VERSION": "30.0.3",
|
||||
"AGP_VERSION": "4.2.2",
|
||||
"SDK_VERSION": 31,
|
||||
"GRADLE_VERSION": "7.4.2",
|
||||
"MIN_BUILD_TOOLS_VERSION": "31.0.0",
|
||||
"AGP_VERSION": "7.1.0",
|
||||
"KOTLIN_VERSION": "1.5.21",
|
||||
"ANDROIDX_APP_COMPAT_VERSION": "1.3.1",
|
||||
"ANDROIDX_WEBKIT_VERSION": "1.4.0",
|
||||
|
@ -29,7 +29,8 @@
|
||||
<activity android:name=".EmbeddedWebViewActivity"
|
||||
android:configChanges="orientation|keyboardHidden"
|
||||
android:label="@string/app_name"
|
||||
android:windowSoftInputMode="adjustPan">
|
||||
android:windowSoftInputMode="adjustPan"
|
||||
android:exported="true">
|
||||
<intent-filter >
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
<category android:name="android.intent.category.LAUNCHER" />
|
||||
@ -38,7 +39,8 @@
|
||||
<activity android:name=".StandardActivity"
|
||||
android:configChanges="orientation|keyboardHidden"
|
||||
android:label="@string/app_name"
|
||||
android:windowSoftInputMode="adjustPan">
|
||||
android:windowSoftInputMode="adjustPan"
|
||||
android:exported="true">
|
||||
<intent-filter >
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
<category android:name="android.intent.category.LAUNCHER" />
|
||||
@ -47,7 +49,8 @@
|
||||
<activity android:name=".TestActivity"
|
||||
android:configChanges="orientation|keyboardHidden"
|
||||
android:label="@string/app_name"
|
||||
android:windowSoftInputMode="adjustPan">
|
||||
android:windowSoftInputMode="adjustPan"
|
||||
android:exported="true">
|
||||
<intent-filter >
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
<category android:name="android.intent.category.LAUNCHER" />
|
||||
|
Loading…
Reference in New Issue
Block a user