Skip to content

Commit

Permalink
more version updates
Browse files Browse the repository at this point in the history
  • Loading branch information
carlpoole committed Apr 24, 2024
1 parent 5dc8642 commit bd30653
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"rnMinVersion": "0.63.4",
"androidLiveUpdatesVersion": "0.5.0",
"rnVersion": "0.5.1",
"iosVersion": "0.10.0",
"androidVersion": "0.9.0",
"iosVersion": "0.11.0",
"androidVersion": "0.10.0",
"version": "0.9.0"
}
12 changes: 6 additions & 6 deletions website/docs/for-android/version-matrix.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,27 +34,27 @@ The following example will use the version of the Capacitor dependency included

```groovy
dependencies {
implementation('io.ionic:portals:0.8.0') {
implementation('io.ionic:portals:0.10.0') {
exclude group: 'com.capacitorjs', module: 'core'
}
implementation 'com.capacitorjs:camera:5.0.7'
implementation 'com.capacitorjs:camera:6.0.0'
}
```

The following example will use the version of the Capacitor dependency specifified in the dependencies block. Neither of the Capacitor versions included with Portals or the Capacitor Camera plugin will be used.

```groovy
dependencies {
implementation('io.ionic:portals:0.8.0') {
implementation('io.ionic:portals:0.10.0') {
exclude group: 'com.capacitorjs', module: 'core'
}
implementation('com.capacitorjs:camera:5.0.7') {
implementation('com.capacitorjs:camera:6.0.0') {
exclude group: 'com.capacitorjs', module: 'core'
}
implementation 'com.capacitorjs:core:5.5.0'
implementation 'com.capacitorjs:core:6.0.0'
}
```

Expand All @@ -66,7 +66,7 @@ For more information refer to the Gradle documentation pages:

| Android SDK | Web Plugin Version | Compiled Capacitor Version | Compatible Capacitor Versions | Compatible Live Updates Versions | Portals CLI |
| :----: | :----: | :----: | :----: | :----: | :----: |
| xxxxx | xxxxx | 6.0.+ | 6.0.0 | 0.5.+ | 0.3.0 |
| 0.10.0 | xxxxx | 6.0.+ | 6.0.+ | 0.5.+ | 0.3.0 |
| 0.9.0 | 0.9.0 | 5.7.+ | 5.0.3 - 5.7.2 | 0.5.+ | 0.3.0 |
| 0.8.4 | 0.9.0 | 5.7.+ | 5.0.3 - 5.7.2 | 0.5.+ | - |
| 0.8.3 | 0.8.1 | 5.5.+ | 5.0.3 - 5.7.2 | 0.0.5 - 0.4.1 | - |
Expand Down

0 comments on commit bd30653

Please sign in to comment.