-
Notifications
You must be signed in to change notification settings - Fork 627
Simplify proguard handling logic. #2744
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
Conversation
This change removes custom logic that configures proguarding and consumerProguardFiles for SDKs and instead makes all configuration explicit per SDK.
Coverage ReportAffected SDKs
Test Logs
NotesHTML coverage reports can be produced locally with Head commit (1b401253) is created by Prow via merging commits: c816404 f80edcc. |
Binary Size ReportAffected SDKs
Test Logs
NotesHead commit (1b401253) is created by Prow via merging commits: c816404 f80edcc. |
Macrobenchmark ReportAffected SDKsMeasurements are for head commit (f80edcc). Diffing against base commit (c816404) is working in progress.
|
/retest |
/retest |
@@ -25,6 +25,7 @@ | |||
import com.google.firebase.gradle.plugins.apiinfo.GetMetalavaJarTask; | |||
import com.google.firebase.gradle.plugins.ci.Coverage; | |||
import com.google.firebase.gradle.plugins.ci.device.FirebaseTestServer; | |||
import com.google.firebase.gradle.plugins.license.LicenseResolverPlugin; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this change related to the proguard logic?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes and no :)
It used to live in the root project configuration alongside the proguard logic. So it makes sense to move it here
buildSrc/src/main/java/com/google/firebase/gradle/plugins/license/LicenseResolverPlugin.java
Show resolved
Hide resolved
/retest |
1 similar comment
/retest |
@vkryachko: The following test failed, say
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. I understand the commands that are listed here. |
This change removes custom logic that configures proguarding and
consumerProguardFiles for SDKs and instead makes all configuration
explicit per SDK.