Skip to content
This repository was archived by the owner on Apr 27, 2025. It is now read-only.

Commit 126c211

Browse files
committed
Update targetSdkVersion to 31 = Android 12
1 parent a9032ac commit 126c211

File tree

7 files changed

+13
-13
lines changed

7 files changed

+13
-13
lines changed

app/release/app-release.apk

-8 Bytes
Binary file not shown.

app/release/output-metadata.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
"type": "SINGLE",
1212
"filters": [],
1313
"attributes": [],
14-
"versionCode": 23,
15-
"versionName": "1.22",
14+
"versionCode": 24,
15+
"versionName": "1.23",
1616
"outputFile": "app-release.apk"
1717
}
1818
],

app/src/main/assets/web/about.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919
<div id="main">
2020
<h1><a href="index.html">My WebView</a></h1>
2121
<h2>About My WebView</h2>
22-
<h3>What's New in Version 1.22</h3>
23-
<p>Update min API level to 25 = Android 7.1 (Nougat)</p>
22+
<h3>What's New in Version 1.23</h3>
23+
<p>Update target API level to 31 = Android 12</p>
2424
<h3>Product Description</h3>
2525
<p>Test your websites with Android WebView, using a configurable list of sites and matches to allow or skip.
2626
Other links will not be handled by the app and will simply ask you to open the standard browser or not.</p>

build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ buildscript {
88

99
}
1010
dependencies {
11-
classpath 'com.android.tools.build:gradle:7.1.2'
11+
classpath 'com.android.tools.build:gradle:7.1.3'
1212

1313
// NOTE: Do not place your application dependencies here; they belong
1414
// in the individual module build.gradle files
@@ -42,9 +42,9 @@ ext {
4242
compileSdkVersion = 31
4343
buildToolsVersion = '31.0.0'
4444
minSdkVersion = 25
45-
targetSdkVersion = 30
46-
versionCode = 23
47-
versionName = "1.22"
45+
targetSdkVersion = 31
46+
versionCode = 24
47+
versionName = "1.23"
4848
appCompatVersion = '1.4.1'
4949
}
5050

docs/about.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919
<div id="main">
2020
<h1><a href="https://github.com/mikespub/android-webview">My WebView</a></h1>
2121
<h2>About My WebView</h2>
22-
<h3>What's New in Version 1.22</h3>
23-
<p>Update min API level to 25 = Android 7.1 (Nougat)</p>
22+
<h3>What's New in Version 1.23</h3>
23+
<p>Update target API level to 31 = Android 12</p>
2424
<h3>Product Description</h3>
2525
<p>Test your websites with Android WebView, using a configurable list of sites and matches to allow or skip.
2626
Other links will not be handled by the app and will simply ask you to open the standard browser or not.</p>

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ org.gradle.jvmargs=-Xmx1536m -XX:+UseParallelGC
1717
android.useAndroidX=true
1818
# Automatically convert third-party libraries to use AndroidX
1919
android.enableJetifier=true
20-
20+
# android.disableAutomaticComponentCreation=false

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>net.mikespub</groupId>
55
<artifactId>mywebview</artifactId>
6-
<version>1.22</version>
6+
<version>1.23</version>
77
<packaging/>
88
<dependencies>
99
<dependency>
1010
<groupId>net.mikespub</groupId>
1111
<artifactId>myutils</artifactId>
12-
<version>1.22</version>
12+
<version>1.23</version>
1313
</dependency>
1414
<dependency>
1515
<groupId>androidx.appcompat</groupId>

0 commit comments

Comments
 (0)