Skip to content

Commit

Permalink
Update doc for 0.2.1 release with AGP 8.2.1 support
Browse files Browse the repository at this point in the history
  • Loading branch information
eric-labelle committed Jan 18, 2024
1 parent df09826 commit c28e26c
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 7 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log

## [0.2.1] - 2024-01-19

* Upgrade AGP to 8.2.1 (#108)

## [0.2.0] - 2023-12-11

* Upgrade AGP to 8.2.0 and Gradle 8.2 (#106)
Expand Down
15 changes: 8 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,8 +108,8 @@ be applied to your project as a Gradle plugin.
// root build.gradle file
buildscript {
dependencies {
classpath "app.cash.better.dynamic.features:agp-patch:0.2.0" // Must be loaded before AGP!
classpath "com.android.tools.build:gradle:8.2.0"
classpath "app.cash.better.dynamic.features:agp-patch:0.2.1" // Must be loaded before AGP!
classpath "com.android.tools.build:gradle:8.2.1"
}
}
```
Expand All @@ -122,7 +122,7 @@ the plugin to your application module.
```groovy
// app/build.gradle
plugins {
id("app.cash.better.dynamic.features.agp-patch") version "0.2.0"
id("app.cash.better.dynamic.features.agp-patch") version "0.2.1"
id("com.android.application") version "7.4.2" // Wrong version!
}
Expand All @@ -139,10 +139,11 @@ project will continue to patch this issue without disabling the incremental tran

Version Compatibility:

| AGP | Better Dynamic Features |
|--------|-------------------------|
| 8.1.0 | 0.1.0 |
| 8.2.0+ | 0.2.0 |
| AGP | Better Dynamic Features |
|-------|-------------------------|
| 8.1.0 | 0.1.0 |
| 8.2.0 | 0.2.0 |
| 8.2.1 | 0.2.1 |
| 8.3.0+ | TBD |

# Using Feature Module Code
Expand Down

0 comments on commit c28e26c

Please sign in to comment.