Skip to content
This repository has been archived by the owner on Oct 31, 2022. It is now read-only.

Upgrade to Gradle 7.0 and AGP 4.2.1 #154

Merged
merged 14 commits into from
Jun 8, 2021
Merged
Prev Previous commit
Next Next commit
Added required duplicatesStrategy for Gradle 7
  • Loading branch information
jkasten2 committed Jun 6, 2021
commit cea0d85b527bfe4e2c15e45897bfbb3b1985147a
4 changes: 4 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,10 @@ test {
}
}

processResources {
// Required by Gradle 7
duplicatesStrategy(DuplicatesStrategy.EXCLUDE)
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nit, is this code well code formatted?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fixed in commit c5e3919

}

// Build for Local Testing
publishing {
Expand Down