Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,19 @@ iOS (only support> 11.0) you need to add this line in your ios/Podfile
`platform :ios, '11.0'`

ready-made in the [Example](https://github.com/AbdOoSaed/flutter_cached_pdfview/tree/master/example)

#### Android
If you are using the most version 0.4.1, in your `android/build.gradle` file, add the jcenter repository. Otherwise, the project will fail to build due to failing to find certain dependencies.

```
allprojects {
repositories {
google()
mavenCentral()
jcenter()
}
}
```

### Import it

Expand Down