joachim.reiss.
04/10/2017, 12:26 PMaudhil
04/10/2017, 5:22 PMvirl
04/12/2017, 12:45 PMuhe
04/12/2017, 1:25 PMvyacheslav.gerasimov
04/12/2017, 1:33 PMmg6maciej
04/13/2017, 2:27 PMPaul Woitaschek
04/14/2017, 6:08 PMjoachim.reiss.
04/15/2017, 8:10 AMmg6maciej
04/15/2017, 11:13 AMrednifre
04/15/2017, 8:14 PMkoufa
04/18/2017, 6:20 PMtrevjones
04/18/2017, 8:06 PMazabost
04/19/2017, 10:10 AMlouiscad
04/20/2017, 7:21 AMmenegatti
04/20/2017, 2:44 PMif (url?.contains("#") == false)
kevinmost
04/20/2017, 6:01 PMaudhil
04/21/2017, 11:06 AMdata class
without a constructor param in Kotlin, possible?kkozmic
04/23/2017, 12:33 PMreggar
04/24/2017, 12:18 PMthymecypher
04/24/2017, 7:04 PMtrevjones
04/25/2017, 7:11 PMprivate fun View.popupMenu(@MenuRes vararg menuItems: Int): PopupMenu {
return PopupMenu(this.context, this, Gravity.END, 0, R.style.AppTheme_Widget_PopupMenu_Overflow).apply {
menuItems.forEach { inflate(it) }
show()
}
}
kkozmic
04/26/2017, 5:52 AMjust_like_that
so it's clear it's magicvyacheslav.gerasimov
04/26/2017, 1:04 PMtrevjones
04/26/2017, 3:39 PMcedric
04/27/2017, 1:47 PMR.java
was converted to R.kt
, would this make incremental compilation faster?alexey.tsvetkov
04/27/2017, 2:13 PMkotlin-android
is used, the tasks are not available during script evaluation.
You can refer to compileKotlin
in project.afterEvaluate { compileKotlin }
.
On the other hand if you want to set suppressWarnings
for the whole project, you can just use kotlinOptions
extension in android
block.
android {
kotlinOptions.suppressWarnings = true
}
bachhuberdesign
04/28/2017, 5:10 PMkkozmic
05/02/2017, 1:06 AMcedric
05/02/2017, 6:54 AMelect
05/02/2017, 1:02 PMURI
. Reading around, it seems I should use InputStream
to fetch the files (from asset
), is that right?elect
05/02/2017, 1:02 PMURI
. Reading around, it seems I should use InputStream
to fetch the files (from asset
), is that right?wasyl
05/02/2017, 1:06 PMInputStream
then one way or another you’ll be able to get files in Android as `InputStream`select
05/02/2017, 1:08 PMwasyl
05/02/2017, 1:09 PMelect
05/02/2017, 1:09 PMURI
InputStream
completelywasyl
05/02/2017, 1:11 PMjava.nio.file.*
imports)elect
05/02/2017, 1:26 PMwasyl
05/02/2017, 1:37 PM