gildor
06/22/2017, 4:58 PMmohsenoid
06/23/2017, 9:07 AM@field:[Inject ApplicationContext]
lateinit var context: Context
but lateinit
does not work with primitive data types like Boolean
, how can I do something like this?
@field:[Inject Named(QualifiersNames.IS_DEMO)]
lateinit var isDemo: Boolean = false
when I remove lateinit
from it I get this error Dagger does not support injection into private fields
menegatti
06/23/2017, 9:11 AMNotNull()
delegate to handle that scenario instead of lateinit
sikanderbhutto
06/23/2017, 12:00 PMMarc
06/23/2017, 1:36 PMError:(5, 28) Unresolved reference: domain
where domain is a module. Have you got any clue?vivekneel
06/23/2017, 10:30 PM@Entity(tableName = CricketConfig.TABLE_NAME)
data class CricketModel(@PrimaryKey(autoGenerate = true) var id : Int = 0 ,@SerializedName("matches") var matches: List<Match> = emptyList())
Now i need to convert List<Match>
to a type that room can recognize , any idea on how to achieve this?rockerhieu
06/24/2017, 6:29 AMkapt { generateStubs = true }
, still same issue. I doubt it is a problem as @vivekneel mentioned as the code worked fine before enabling kotlingildor
06/24/2017, 6:45 AManton.golovin
06/24/2017, 8:29 PMannotation @ActivityKey is missing a default value for the element 'value'
incompatible types: NonExistentClass cannot be converted to Annotation
java.lang.IllegalStateException: failed to analyze: org.jetbrains.kotlin.kapt3.diagnostic.KaptError: Error while annotation processing
Doesn’t work with Dagger 2 for me. Does anybody know what the problem?mithuroy
06/25/2017, 5:29 AMmithuroy
06/25/2017, 5:32 AMaakaashjois
06/25/2017, 6:24 AMKotlin version that is used for building with Gradle (1.1.2-5) differs from the one bundled into the IDE plugin (1.1.2-4)
. I get this warning. Should I roll back my Kotlin version?takagis
06/25/2017, 10:56 AMmrzak-dev
06/25/2017, 10:02 PMChristian Maier
06/26/2017, 9:18 AMsandeep
06/26/2017, 9:20 AMjmfayard
06/26/2017, 10:34 AMcharlae4ive
06/26/2017, 2:57 PMcharlae4ive
06/26/2017, 2:57 PMkevmoturi
06/26/2017, 4:08 PMihor_kucherenko
06/27/2017, 7:36 AMkevmoturi
06/27/2017, 3:51 PMmithuroy
06/27/2017, 7:47 PMhetang
06/27/2017, 7:50 PMsidharthanil
06/28/2017, 1:42 PMvivekneel
06/28/2017, 3:40 PMdefault_remote_config.xml
stored locally in res/xml/kokeroulis
06/29/2017, 7:30 AMe: java.lang.NullPointerException
* What went wrong:
Execution failed for task ':app:kaptDebugKotlin'.
> Internal compiler error. See log for more details`
martindg
06/29/2017, 3:10 PMmartindg
06/29/2017, 3:25 PMmenegatti
06/29/2017, 3:30 PMval picker: NumberPicker = view.findViewById(R.id.picker)
menegatti
06/29/2017, 3:30 PMval picker: NumberPicker = view.findViewById(R.id.picker)
smilecs
07/03/2017, 4:17 PM