Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
AndroidUtils
VPNTunnelProxy
Commits
645af933
Commit
645af933
authored
Jun 02, 2021
by
Daniel Wolf
Browse files
Migrate from dokka android plugin to normal dokka plugin
parent
a6f5aa18
Changes
2
Hide whitespace changes
Inline
Side-by-side
build.gradle
View file @
645af933
...
...
@@ -46,7 +46,7 @@ buildscript {
dependencies
{
classpath
"com.android.tools.build:gradle:$ANDROID_GRADLE_PLUGIN_VERSION"
classpath
"org.jetbrains.kotlin:kotlin-gradle-plugin:$KOTLIN_VERSION"
classpath
"org.jetbrains.dokka:dokka-
android-
gradle-plugin:
0.9.18
"
classpath
"org.jetbrains.dokka:dokka-gradle-plugin:
1.4.32
"
}
}
...
...
library/build.gradle
View file @
645af933
apply
plugin:
'com.android.library'
apply
plugin:
'kotlin-android'
apply
plugin:
'kotlin-android-extensions'
apply
plugin:
'org.jetbrains.dokka
-android
'
apply
plugin:
'org.jetbrains.dokka'
group
=
'com.frostnerd.utils'
ext
{
...
...
@@ -48,6 +48,14 @@ android {
}
}
dokkaHtml
.
configure
{
dokkaSourceSets
{
named
(
"main"
)
{
noAndroidSdkLink
.
set
(
false
)
}
}
}
static
def
compileBinariesLocally
()
{
return
System
.
getenv
(
"COMPILE_BINARIES"
)
!=
null
||
System
.
getenv
(
"NEXUS_USER"
)
==
null
||
System
.
getenv
(
"NEXUS_PASSWORD"
)
==
null
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment