Skip to content

Commit 925f39f

Browse files
author
Vasyl Koshkin
committed
Update README
1 parent dae0b1e commit 925f39f

File tree

3 files changed

+13
-8
lines changed

3 files changed

+13
-8
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 3.2.3 (2024-03-18)
2+
* Change minimum SDK version to 21
3+
* Update [PdfiumAndroid library](https://github.com/lion1988dev/PdfiumAndroid) to 1.9.3
4+
15
## 3.2.1 (2024-03-10)
26
* Change minimum SDK version to 19
37
* Drop MIPS support

README.md

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,11 @@ Library for displaying PDF documents on Android, with `animations`, `gestures`,
1313
It is based on [PdfiumAndroid](https://github.com/barteksc/PdfiumAndroid) for decoding PDF files. Works on API 11 (Android 3.0) and higher.
1414
Licensed under Apache License 2.0.
1515

16+
## 3.2.3
17+
* Change minimum SDK version to 21
18+
* Update [PdfiumAndroid library](https://github.com/lion1988dev/PdfiumAndroid) to 1.9.3
19+
20+
1621
## 3.2.1
1722
* Change minimum SDK version to 23
1823
* Drop MIPS support
@@ -54,13 +59,7 @@ dependencyResolutionManagement {
5459
```
5560
Add to the app _build.gradle_:
5661

57-
`implementation 'com.github.lion1988dev:AndroidPdfViewer:3.2.1'`
58-
59-
or if you want to use more stable version:
60-
61-
`implementation 'com.github.barteksc:android-pdf-viewer:2.8.2'`
62-
63-
Library is available in jcenter repository, probably it'll be in Maven Central soon.
62+
`implementation 'com.github.lion1988dev:AndroidPdfViewer:3.2.3'`
6463

6564
## ProGuard
6665
If you are using ProGuard, add following rule to proguard config file:

android-pdf-viewer/build.gradle

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ plugins {
33
id 'maven-publish'
44
}
55

6+
group "com.github.lion1988dev"
7+
68
android {
79
namespace "com.github.barteksc.pdfviewer"
810

@@ -47,7 +49,7 @@ publishing {
4749
publications {
4850
release(MavenPublication) {
4951
groupId = 'com.github.lion1988dev'
50-
artifactId = 'com.github.barteksc.pdfviewer'
52+
artifactId = 'AndroidPdfViewer'
5153
version = "3.2.3"
5254

5355
afterEvaluate {

0 commit comments

Comments
 (0)