@@ -122,8 +122,17 @@ If you have to configure plugin parameters manually (which is completely optiona
122122 // Sets the name for a report
123123 name = "Report Name" // Default: Module name
124124
125- // Output path where report will be generated
126- outputPath = project.buildDir.absolutePath + "/custom_path" // Default: module/buildDir/compose_report
125+ // Output directory where report will be generated
126+ outputDirectory = layout.buildDirectory.dir("custom_dir").get().asFile // Default: module/buildDir/compose_report
127+
128+ // Whether to include stable composable functions in the final report or not.
129+ includeStableComposables = true/false // Default: true
130+
131+ // Whether to include stable classes in the final report or not.
132+ includeStableClasses = true/false // Default: true
133+
134+ // Whether to include the ALL classes in the final report or not.
135+ includeClasses = true/false // Default: true
127136 }
128137 ```
129138
@@ -140,7 +149,16 @@ If you have to configure plugin parameters manually (which is completely optiona
140149 // Sets the name for a report
141150 name.set("Report Name") // Default: Module name
142151
143- // Output path where report will be generated
144- outputPath.set(project.buildDir.resolve("custom_path").absolutePath) // Default: module/buildDir/compose_report
152+ // Output directory where report will be generated
153+ outputDirectory.set(layout.buildDirectory.dir("custom_dir").get().asFile) // Default: module/buildDir/compose_report
154+
155+ // Whether to include stable composable functions in the final report or not.
156+ includeStableComposables.set(true/false) // Default: true
157+
158+ // Whether to include stable classes in the final report or not.
159+ includeStableClasses.set(true/false) // Default: true
160+
161+ // Whether to include the ALL classes in the final report or not.
162+ includeClasses.set(true/false) // Default: true
145163 }
146164 ```
0 commit comments