From 47d5184e8dc1d42d775f43eb2c991cb1c026ca13 Mon Sep 17 00:00:00 2001 From: Alexander Capehart Date: Mon, 16 Dec 2024 14:41:45 -0500 Subject: [PATCH] build: add dokka Just to test API surface in the future. --- build.gradle | 1 + musikr/build.gradle | 1 + 2 files changed, 2 insertions(+) diff --git a/build.gradle b/build.gradle index 613a04637..e5dfab5c5 100644 --- a/build.gradle +++ b/build.gradle @@ -16,6 +16,7 @@ buildscript { dependencies { // Hilt isn't compatible with the new plugin syntax yet. classpath "com.google.dagger:hilt-android-gradle-plugin:$hilt_version" + classpath "org.jetbrains.dokka:dokka-gradle-plugin:2.0.0" } } diff --git a/musikr/build.gradle b/musikr/build.gradle index 3bb9a821d..169096ae1 100644 --- a/musikr/build.gradle +++ b/musikr/build.gradle @@ -6,6 +6,7 @@ plugins { id "com.google.devtools.ksp" id "com.diffplug.spotless" id "kotlin-parcelize" + id "org.jetbrains.dokka" } android {