dragas
06/17/2017, 12:18 PMleodeleon
06/17/2017, 12:40 PM@BindString(R.string.favorites) internal var favorites: String? = null
leodeleon
06/17/2017, 2:32 PMview
no successleodeleon
06/17/2017, 8:47 PMnhaarman
06/18/2017, 8:40 AMfindViewById
instead of _$_findCachedViewById
. Is it a bug? Or is there something else going on with view classes? The Activity generated code does use the proper method.bodo
06/18/2017, 8:46 AMkartikpatodi
06/18/2017, 12:58 PMvickyc
06/18/2017, 2:01 PMwilburt
06/18/2017, 11:35 PMgildor
06/19/2017, 6:18 AMgildor
06/19/2017, 7:50 AMmarcinmoskala
06/19/2017, 9:41 AMjw
06/19/2017, 2:11 PMradityagumay
06/20/2017, 5:28 AMvivekneel
06/20/2017, 5:55 AMmorozov
06/20/2017, 9:01 AMreturn true
My function:
override fun onBackPressed(): Boolean {
if (amountCalculator?.visible ?: false)
amountCalculator?.let { it.toggle(presenter.goal.amount) }
else if (initialBalanceCalculator?.visible ?: false)
initialBalanceCalculator?.let { it.toggle(presenter.goal.initialBalance) }
else return false
return true
}
dathoang.se
06/20/2017, 9:15 AMmorozov
06/20/2017, 9:48 AMtrevjones
06/20/2017, 5:11 PMbtilbrook-nextfaze
06/20/2017, 11:53 PM1.1.3-eap-85
and `com.android.tools.build:gradle:3.0.0-alpha4`:
./gradlew -Pkotlin.incremental=false clean assembleRelease
./gradlew -Pkotlin.incremental=false assembleRelease // Prints "Using kotlin incremental compilation"
My goal is to disable it for CI builds, preferably without having to configure the CI environment globally by using special ~/.gradle/gradle.properties
configuration.sidharthanil
06/21/2017, 7:58 AMlovis
06/21/2017, 10:00 AMwhen(viewID) {
R.id.some -> fun3()
}
...
fun fun3() {
fun1()
fun2()
}
sikanderbhutto
06/21/2017, 10:45 AMPaul Woitaschek
06/21/2017, 1:11 PMwesjon
06/21/2017, 1:32 PMszymen
06/21/2017, 4:30 PMhttps://www.youtube.com/watch?v=fPzxfeDJDzY▾
vivekneel
06/21/2017, 10:59 PM@Entity(
tableName = "template"
)
data class ListTemplate (
@PrimaryKey(autoGenerate = true) var id: Long = 0L,
@SerializedName("name") var name: String = "",
@SerializedName("thumbnail") var thumbnail: String= "",
@SerializedName("category") var category: String = "",
@SerializedName("totalAmount") var totalAmount: Long = 0L,
@SerializedName("currency") var currency: String = ""
)
studio is throwing an error saying Error:Type of the parameter must be a class annotated with @Entity or a collection/array of it.
sikanderbhutto
06/22/2017, 6:44 AMchanzmao
06/22/2017, 10:22 AMaakaashjois
06/22/2017, 4:54 PMSnackbar
class has a static function make
which allows us to create a Snackbar
, can I use Kotlin extension function on the Snackbar
class to create a static method similar to make
?aakaashjois
06/22/2017, 4:54 PMSnackbar
class has a static function make
which allows us to create a Snackbar
, can I use Kotlin extension function on the Snackbar
class to create a static method similar to make
?radityagumay
06/22/2017, 6:23 PMaakaashjois
06/22/2017, 6:41 PMkirillrakhman
06/22/2017, 8:50 PMaakaashjois
06/23/2017, 3:56 AMpablisco
07/07/2017, 1:16 PMradityagumay
08/19/2017, 5:35 PM