pniederw
01/24/2019, 9:21 PMpniederw
01/24/2019, 9:31 PMCLOVIS
01/24/2019, 10:58 PMCLOVIS
01/24/2019, 10:59 PMgammax
01/24/2019, 11:00 PMkatz
01/24/2019, 11:30 PMdependencies{ impl plugin_id}
than i have to use same plugin id in app
2) i add for app buildscript.... plugin_id
can i somehow make it as const?
in case i place it in code file under buildsSrc/src - dsl build gradle aint see it (obviously)Nikky
01/25/2019, 1:15 AMsuspend fun main(vararg args: String) {}
from gradle ?user
08/22/2019, 7:25 PMuser
08/22/2019, 7:43 PMLeoColman
08/23/2019, 4:25 AMclass Foo {
lateinit var bar: String
}
Why is the bytecode generated for the setter
public final void setBar(@NotNull String var1) {
Intrinsics.checkParameterIsNotNull(var1, "<set-?>");
this.bar = var1;
}
LeoColman
08/23/2019, 4:26 AMIllegal parameter name of ... <set-?>
LeoColman
08/23/2019, 4:26 AM<set-?>
?Michał Kalinowski
08/23/2019, 5:23 AMas
, as?
, is
?Michał Kalinowski
08/23/2019, 5:25 AMhmole
08/23/2019, 7:24 AMEugen Martynov
08/23/2019, 8:34 AMcapitalise(Locale)
is marked as experimental api, where I can find roadmap when it is planned to get into mainstream?igor.wojda
08/23/2019, 9:19 AMgregorbg
08/23/2019, 12:43 PMcubesky
08/23/2019, 3:36 PMcubesky
08/23/2019, 3:36 PMGunslingor
08/23/2019, 6:32 PMgroostav
08/23/2019, 11:35 PM@JvmDefault
, where can i put -jvm-default=compatibility
, in intelliJ?groostav
08/23/2019, 11:37 PMBibin Kumar
08/24/2019, 11:11 PMKulwinder Singh
08/25/2019, 7:39 AMdata
class for Firestore and recently i had added fun isComplete(): Boolean
function to check if user info is complete but now whenever i use this data class to save/update user's object then there is new property isCompleted
is also saved on Firestore document and its value is also becomes true/false
depending on User object complete or incomplete. but why it is creating property for isComplete
funtion ?, is it something related to kotlin's getters/setters
?
data class User(
val uid: String? = null,
var name: String = "",
val age: String = "",
val gender: Gender = Gender.UNSELECTED
) {
fun isComplete(): Boolean {
return uid != null && name.isNotEmpty() && age.isNotEmpty() && gender != Gender.UNSELECTED
}
}
Bibin Kumar
08/25/2019, 11:41 AMjaguililla
08/25/2019, 2:51 PMfun fun1(list: List<*>)
. You have to give them different namesjvasallo
08/25/2019, 5:17 PMSam Schilling
08/26/2019, 5:37 PM