Closed Berki2021 closed 2 years ago
Looks this may be due to the change of the exclusion patterns being now on the real package identifier. And no more on the legacy format with .
replaced by _
(which was necessary for the strings.xml
file) - The id is now package name and artifactId: https://github.com/mikepenz/AboutLibraries/blob/f5f95a439920bbb39dea4f7b98c7dd41cea85336/plugin-build/plugin/src/main/kotlin/com/mikepenz/aboutlibraries/plugin/util/LibrariesProcessor.kt#L149
What about the dependencies with two "__" like ~"com_google_android_datatransport__.*"
?
Would this be ~"com.google.android.datatransport...*"?
@Berki2021 this pattern is a regex. which means the .
actually means any character. theoretically in this case we could escape it as we are actually asking for a literal .
.
so at the end the .*
means .
- any character - *
repeated one or more times.
About this issue
Build Gradle
Fragment
Details
Checklist