Skip to content

Commit 80753f1

Browse files
author
Vasyl Koshkin
committed
Update README
1 parent 3734a53 commit 80753f1

2 files changed

Lines changed: 26 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 3.2.1 (2024-03-10)
2+
* Change minimum SDK version to 19
3+
* Drop MIPS support
4+
* Update to Androidx
5+
* Switch pdfium-android to a [fork](https://github.com/lion1988dev/PdfiumAndroid) so we can disable jetifier
6+
17
## 3.2.0-beta.1 (2019-08-18)
28
* Merge PR #714 with optimized page load
39
* Merge PR #776 with fix for max & min zoom level

README.md

Lines changed: 20 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11

2-
# Looking for new maintainer!
2+
#### This is a fork of the [AndroidPdfViewer](https://github.com/barteksc/AndroidPdfViewer)
3+
switch back to the mainline repo when it gets migrated off JCenter
34

45

56
# Android PdfViewer
@@ -12,6 +13,12 @@ Library for displaying PDF documents on Android, with `animations`, `gestures`,
1213
It is based on [PdfiumAndroid](https://github.com/barteksc/PdfiumAndroid) for decoding PDF files. Works on API 11 (Android 3.0) and higher.
1314
Licensed under Apache License 2.0.
1415

16+
## 3.2.1
17+
* Change minimum SDK version to 23
18+
* Drop MIPS support
19+
* Update to Androidx
20+
* Switch pdfium-android to a [fork](https://github.com/lion1988dev/PdfiumAndroid) so we can disable jetifier
21+
1522
## What's new in 3.2.0-beta.1?
1623
* Merge PR #714 with optimized page load
1724
* Merge PR #776 with fix for max & min zoom level
@@ -35,9 +42,19 @@ Licensed under Apache License 2.0.
3542

3643
## Installation
3744

38-
Add to _build.gradle_:
45+
Add to the root _build.gradle_:
46+
```groovy
47+
dependencyResolutionManagement {
48+
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
49+
repositories {
50+
mavenCentral()
51+
maven { url 'https://jitpack.io' }
52+
}
53+
}
54+
```
55+
Add to the app _build.gradle_:
3956

40-
`implementation 'com.github.barteksc:android-pdf-viewer:3.2.0-beta.1'`
57+
`implementation 'com.github.lion1988dev:AndroidPdfViewer:3.2.1'`
4158

4259
or if you want to use more stable version:
4360

0 commit comments

Comments
 (0)