You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While using your gradle license plugin in a bigger project I noticed that it's not possible to run the license{$variant}Report in a task that also depends on process{$variant}Manifest, from the Android Gradle Plugin, somehow. Please see the following code. I also created a simple projecthere.
Running generateLicenses works fine, but running createEmptyLicenseReportIssue instead, resolves in an empty json/html file.
Thank you for looking into this issue!
licenseReport {
generateHtmlReport = false
generateJsonReport = true
copyHtmlReportToAssets = false
copyJsonReportToAssets = false
}
task generateLicenses { // Does Work ✅
dependsOn 'licenseDebugReport'
}
task createEmptyLicenseReportIssue { // Does not work ⛔️
dependsOn 'processDebugManifest'
dependsOn 'generateLicenses'
}
generateLicenses.mustRunAfter('processDebugManifest')
The text was updated successfully, but these errors were encountered:
While using your gradle license plugin in a bigger project I noticed that it's not possible to run the license{$variant}Report in a task that also depends on process{$variant}Manifest, from the Android Gradle Plugin, somehow. Please see the following code. I also created a simple project here.
Running generateLicenses works fine, but running createEmptyLicenseReportIssue instead, resolves in an empty json/html file.
Thank you for looking into this issue!
The text was updated successfully, but these errors were encountered: