File tree Expand file tree Collapse file tree 4 files changed +16
-1
lines changed
Expand file tree Collapse file tree 4 files changed +16
-1
lines changed Original file line number Diff line number Diff line change @@ -272,7 +272,7 @@ jobs:
272272 api-level : ${{ matrix.api-level }}
273273 arch : x86_64
274274 force-avd-creation : false
275- heap-size : 256M
275+ heap-size : 4608M
276276 emulator-options : -no-snapshot-save -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none
277277 disable-animations : true
278278 script : >-
Original file line number Diff line number Diff line change @@ -26,6 +26,9 @@ plugins {
2626}
2727
2828tasks.dokkaHtmlMultiModule {
29+ dependsOn(" :engine:kaptDebugKotlin" )
30+ dependsOn(" :engine:kaptDebugNonProxyKotlin" )
31+ dependsOn(" :engine:kaptReleaseKotlin" )
2932 moduleName.set(" OpenSRP" )
3033 moduleVersion.set(project.version.toString())
3134 outputDirectory.set(file(buildDir.resolve(" dokka" )))
Original file line number Diff line number Diff line change @@ -14,6 +14,12 @@ plugins {
1414 id(" androidx.navigation.safeargs" )
1515}
1616
17+ tasks.named(" dokkaHtmlPartial" ) {
18+ dependsOn(" kaptDebugKotlin" )
19+ dependsOn(" kaptDebugNonProxyKotlin" )
20+ dependsOn(" kaptReleaseKotlin" )
21+ }
22+
1723android {
1824 compileSdk = BuildConfigs .compileSdk
1925
Original file line number Diff line number Diff line change @@ -13,6 +13,12 @@ plugins {
1313 id(" org.jetbrains.kotlin.plugin.serialization" )
1414}
1515
16+ tasks.named(" dokkaHtmlPartial" ) {
17+ dependsOn(" kaptDebugKotlin" )
18+ dependsOn(" kaptDebugNonProxyKotlin" )
19+ dependsOn(" kaptReleaseKotlin" )
20+ }
21+
1622android {
1723 compileSdk = BuildConfigs .compileSdk
1824
You can’t perform that action at this time.
0 commit comments