diff --git a/CHANGELOG.md b/CHANGELOG.md index 13183b9..13b968e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +## 1.9.4 (2024-03-19) +* Fix issue for the newest Android devices with API 34+ + ## 1.9.3 (2024-03-18) * Update Gradle plugins and configurations * Change minimum SDK to 21 diff --git a/README.md b/README.md index 87b54d1..414b858 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,9 @@ The purpose is to remove old support libraries so we no longer need to use jetif It will be used with the forked [AndroidPdFViewer](https://github.com/lion1988dev/AndroidPdfViewer) +## What's new in 1.9.4 +* Fix issue for the newest Android devices with API 34+ + ## What's new in 1.9.3 * Update Gradle plugins and configurations * Change minimum SDK to 21 @@ -38,7 +41,7 @@ dependencyResolutionManagement { Add to the app _build.gradle_: -`implementation 'com.github.lion1988dev:PdfiumAndroid:1.9.3'` +`implementation 'com.github.lion1988dev:PdfiumAndroid:1.9.4'` Library is available in jcenter and Maven Central repositories. diff --git a/build.gradle b/build.gradle index 69a2247..f6a377a 100644 --- a/build.gradle +++ b/build.gradle @@ -8,8 +8,8 @@ ext { minSdk : 21, targetSdk : 34, compileSdk : 34, - versionCode: 2, - versionName: '1.9.3' + versionCode: 3, + versionName: '1.9.4' ] } @@ -86,7 +86,7 @@ publishing { release(MavenPublication) { groupId = 'com.github.lion1988dev' artifactId = 'PdfiumAndroid' - version = "1.9.3" + version = "1.9.4" afterEvaluate { from components.release