Skip to content

Commit

Permalink
Update DebugProbesKt.bin exclusion instruction (Kotlin#2889)
Browse files Browse the repository at this point in the history
raw exclude call is now deprecated and gives the following warning,

  This property is deprecated. Use resources.excludes or jniLibs.excludes instead. Use
  jniLibs.excludes for .so file patterns, and use resources.excludes for all
  other file patterns.
  • Loading branch information
ebraminio committed Aug 23, 2021
1 parent e5c6cf9 commit b5679ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ normally and is only used by the debugger. To exclude it at no loss of functiona
`android` block in your Gradle file for the application subproject:
```groovy
packagingOptions {
exclude "DebugProbesKt.bin"
resources.excludes += "DebugProbesKt.bin"
}
```

Expand Down

0 comments on commit b5679ab

Please sign in to comment.