Paul Woitaschek
08/26/2019, 8:10 AMkaptGenerateStubsDevKotlin
even though I only have kapAndroidTest
, kaptRelease
and kaptDebug
in my gradle file.wasyl
08/26/2019, 8:18 AMdarkmoon_uk
08/26/2019, 8:20 AMverbose
mode for `kapt`:
https://kotlinlang.org/docs/reference/kapt.htmlPaul Woitaschek
08/26/2019, 8:23 AMverbose
in android studio?darkmoon_uk
08/26/2019, 8:25 AMgradle.properties
add the line:
kapt.verbose=true
Paul Woitaschek
08/26/2019, 8:26 AMDico
08/26/2019, 8:54 AMPaul Woitaschek
08/26/2019, 8:56 AMjw
08/26/2019, 2:04 PMEugen Martynov
08/26/2019, 2:45 PMwasyl
08/26/2019, 2:54 PM./gradlew module:assembleDev -Pkapt.verbose=true --rerun-tasks
)?Paul Woitaschek
08/26/2019, 3:13 PMapp:mergeDevNativeLibs
even though I dont have any native code at all.
Even the configuration phase takes 30 seconds 😞wasyl
08/26/2019, 3:20 PMPaul Woitaschek
08/26/2019, 3:23 PMgildor
08/26/2019, 5:04 PMEugen Martynov
08/26/2019, 5:18 PMPaul Woitaschek
08/26/2019, 5:23 PMwasyl
08/26/2019, 5:25 PMEugen Martynov
08/26/2019, 10:37 PMgildor
08/26/2019, 11:25 PMPaul Woitaschek
09/05/2019, 1:27 PMwasyl
09/05/2019, 1:39 PMPaul Woitaschek
09/05/2019, 1:52 PMgildor
09/05/2019, 3:39 PMPaul Woitaschek
09/06/2019, 8:40 AMgildor
09/06/2019, 10:48 AMEugen Martynov
09/06/2019, 6:11 PMwasyl
09/06/2019, 6:56 PMPaul Woitaschek
09/06/2019, 9:53 PMbuild.gradle
with only a single task:
tasks.register("hello") {}
It throws an exception because all subprojects cant be configured due to the android plugin not applied. But why is it even trying to configure everything? I thought its supposed to do that on demandgildor
09/07/2019, 6:16 AMEugen Martynov
09/07/2019, 7:07 AMPaul Woitaschek
09/07/2019, 8:13 AMcompileDebugAndroidTestJavaWithJavac, compileDebugAndroidTestKotlin, compileDebugJavaWithJavac, compileDebugKotlin, compileDebugUnitTestJavaWithJavac, compileDebugUnitTestKotlin, compileDevJavaWithJavac, compileDevKotlin, compileDevUnitTestJavaWithJavac, compileDevUnitTestKotlin, compileReleaseJavaWithJavac, compileReleaseKotlin, compileReleaseUnitTestJavaWithJavac, compileReleaseUnitTestKotlin
gildor
09/07/2019, 10:36 AMplay with bazel or buckDon't think that it's good advice if you don't have a person who will support this at least part time. Bazel and buck have some nice features for really big scale, but support of all required tools and just config is not easy Also both of them, to get advantage of fast builds require even more aggressive modularization and carefully managed module dependencies graph
Until they might change ithttps://gradle.github.io/instant-execution/
jw
09/07/2019, 12:21 PM