We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c49577b commit 5cba191Copy full SHA for 5cba191
test-app/app/gradle-helpers/AnalyticsCollector.gradle
@@ -19,8 +19,8 @@ class AnalyticsCollector{
19
return new AnalyticsCollector(analyticsFilePath)
20
}
21
22
- void markHasUseKotlinPropertyInApp() {
23
- hasUseKotlinPropertyInApp = true
+ void markUseKotlinPropertyInApp(boolean useKotlin) {
+ hasUseKotlinPropertyInApp = useKotlin
24
25
26
void writeAnalyticsFile() {
@@ -45,4 +45,4 @@ class AnalyticsCollector{
45
46
47
48
-ext.AnalyticsCollector = AnalyticsCollector
+ext.AnalyticsCollector = AnalyticsCollector
0 commit comments