From 44d183e86ebba9590bf8e7eb257ed59bb832aba0 Mon Sep 17 00:00:00 2001 From: "Wyatt J. Miller" Date: Tue, 15 Sep 2020 14:47:33 -0400 Subject: [PATCH] modified gradle files to add a documentation generation system v2 --- app/build.gradle | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index 08767b5..a28b71e 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -1,6 +1,7 @@ plugins { id 'com.android.application' id 'kotlin-android' + id 'org.jetbrains.dokka' } android { @@ -33,13 +34,13 @@ android { } dependencies { - implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version" implementation 'androidx.core:core-ktx:1.3.1' implementation 'androidx.appcompat:appcompat:1.2.0' - implementation 'com.google.android.material:material:1.2.0' - implementation 'androidx.constraintlayout:constraintlayout:1.1.3' - testImplementation 'junit:junit:4.+' + implementation 'com.google.android.material:material:1.2.1' + implementation 'androidx.constraintlayout:constraintlayout:2.0.1' + dokkaHtmlPlugin("org.jetbrains.dokka:kotlin-as-java-plugin:1.4.0") + testImplementation 'junit:junit:4.13' androidTestImplementation 'androidx.test.ext:junit:1.1.2' androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0' -} \ No newline at end of file +}