Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update doc for 0.2.1 release with AGP 8.2.1 support #109

Merged
merged 1 commit into from
Jan 22, 2024
Merged
Show file tree
Hide file tree
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
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-22

* 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